hxt-unicode-9.0.2.4: Unicode en-/decoding functions for utf8, iso-latin-* and other encodings
Safe HaskellSafe-Inferred
LanguageHaskell98

Data.String.UTF8

Documentation

encode :: [Char] -> [Word8] #

decode :: [Word8] -> ([Char], [(Error, Int)]) #

decodeEmbedErrors :: [Word8] -> [Either (Error, Int) Char] #

encodeOne :: Char -> [Word8] #

decodeOne :: [Word8] -> (Either Error Char, Int, [Word8]) #

data Error #

Instances

Instances details
Eq Error # 
Instance details

Defined in Data.String.UTF8

Methods

(==) :: Error -> Error -> Bool

(/=) :: Error -> Error -> Bool

Show Error # 
Instance details

Defined in Data.String.UTF8

Methods

showsPrec :: Int -> Error -> ShowS

show :: Error -> String

showList :: [Error] -> ShowS