dataenc-0.14.0.7: Data encoding library
Copyright(c) 2009 Magnus Therning
LicenseBSD3
Safe HaskellSafe-Inferred
LanguageHaskell98

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

Documentation

data EncIncData Source #

Data type for the incremental encoding functions.

Constructors

EChunk [Word8]

a chunk of data to be encoded

EDone

the signal to the encoder that the stream of data is ending

data EncIncRes i Source #

Data type for the result of calling the incremental encoding functions.

Constructors

EPart i (EncIncData -> EncIncRes i)

a partial result together with the continuation to use for further encoding

EFinal i

the final result of encoding (the response to EDone)

encodeInc :: EncIncData -> EncIncRes String Source #

Incremental decoder function.

encode :: [Word8] -> String Source #

Encode data.

data DecIncData i Source #

Data type for the incremental decoding functions.

data DecIncRes i Source #

Data type for the result of calling the incremental encoding functions.

decodeInc :: DecIncData String -> DecIncRes String Source #

Incremental decoder function.

decode :: String -> Maybe [Word8] Source #

Decode data.

chop Source #

Arguments

:: Int

length of individual lines

-> String 
-> [String] 

Chop up a string in parts.

unchop :: [String] -> String Source #

Concatenate the strings into one long string