-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Transcode encodings with machines. -- -- Transcoding of encodings with machines. @package machines-encoding @version 0 module Data.Machines.Encoding.Text -- | Convert a stream of ByteStrings to a stream of Text - by transorming -- the bytes from the Latin1 encoding. decodeLatin1 :: Process ByteString Text -- | Convert a stream of Text to a stream of ByteStrings - by transorming -- the symboles to the UTF-8 encoding. encodeUtf8 :: Process Text ByteString -- | Convert a stream of ByteStrings to a stream of Text - by transorming -- the bytes from the UTF-8 encoding. decodeUtf8 :: Process ByteString Text