hw-prim-0.0.0.2: src/HaskellWorks/Data/FromByteString.hs
module HaskellWorks.Data.FromByteString ( FromByteString(..) ) where import Data.ByteString.Internal -- | Class for byte-string-like datastructures class FromByteString a where -- | Convert a byte string to a value of type @a fromByteString :: ByteString -> a