describe-0.2.0.1: src/Data/Serialize/Describe/Endianness.hs
module Data.Serialize.Describe.Endianness(
LE(..),
BE(..)
) where
newtype LE a = LE { unwrapLE :: a }
newtype BE a = BE { unwrapBE :: a }
module Data.Serialize.Describe.Endianness(
LE(..),
BE(..)
) where
newtype LE a = LE { unwrapLE :: a }
newtype BE a = BE { unwrapBE :: a }