isomorphism-class-0.3: library/IsomorphismClass/Relations/ByteStringAndWord8List.hs
{-# OPTIONS_GHC -Wno-orphans #-}
module IsomorphismClass.Relations.ByteStringAndWord8List where
import qualified Data.ByteString
import IsomorphismClass.Classes
import IsomorphismClass.Prelude
instance IsomorphicTo ByteString [Word8] where
to = Data.ByteString.pack
instance IsomorphicTo [Word8] ByteString where
to = Data.ByteString.unpack