octane-0.4.1: library/Octane/Type/Replication.hs
{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE DeriveGeneric #-}
module Octane.Type.Replication (Replication(..)) where
import Octane.Core
data Replication = Replication
{
} deriving (Eq, Generic, NFData, Show)
instance BinaryBit Replication where
getBits _ = do
return Replication
{
}
putBits _ _ = do
return ()