dataenc-0.13.0.1: Data encoding librarySource codeContentsIndex
Codec.Binary.Url
Description

URL encoding, sometimes referred to as URI encoding or percent encoding. Implemented based on RFC 3986 (http://tools.ietf.org/html/rfc3986).

Further documentation and information can be found at http://www.haskell.org/haskellwiki/Library/Data_encoding.

Synopsis
encode :: [Word8] -> String
decode :: String -> Maybe [Word8]
decode' :: String -> [Maybe Word8]
chop :: Int -> String -> [String]
unchop :: [String] -> String
Documentation
encode :: [Word8] -> StringSource
Encode data.
decode :: String -> Maybe [Word8]Source
Decode data (strict).
decode' :: String -> [Maybe Word8]Source
Decode data (lazy).
chopSource
:: Intlength of individual lines
-> String
-> [String]
Chop up a string in parts.
unchop :: [String] -> StringSource
Concatenate the strings into one long string
Produced by Haddock version 2.4.2