Liking cljdoc? Tell your friends :D

ring.util.codec

Functions for encoding and decoding data.

Functions for encoding and decoding data.
raw docstring

assoc-conjclj

(assoc-conj map key val)

Associate a key with a value in a map. If the key already exists in the map, a vector of values is associated with the key.

Associate a key with a value in a map. If the key already exists in the map,
a vector of values is associated with the key.
sourceraw docstring

base64-decodeclj

(base64-decode encoded)

Decode a base64 encoded string into an array of bytes.

Decode a base64 encoded string into an array of bytes.
sourceraw docstring

base64-encodeclj

(base64-encode unencoded)

Encode an array of bytes into a base64 encoded string.

Encode an array of bytes into a base64 encoded string.
sourceraw docstring

form-decodeclj

(form-decode encoded)
(form-decode encoded encoding)

Decode the supplied www-form-urlencoded string using the specified encoding, or UTF-8 by default. If the encoded value is a string, a string is returned. If the encoded value is a map of parameters, a map is returned.

Decode the supplied www-form-urlencoded string using the specified encoding,
or UTF-8 by default. If the encoded value is a string, a string is returned.
If the encoded value is a map of parameters, a map is returned.
sourceraw docstring

form-decode-strclj

(form-decode-str encoded)
(form-decode-str encoded encoding)

Decode the supplied www-form-urlencoded string using the specified encoding, or UTF-8 by default.

Decode the supplied www-form-urlencoded string using the specified encoding,
or UTF-8 by default.
sourceraw docstring

form-encodeclj

(form-encode x)
(form-encode x encoding)

Encode the supplied value into www-form-urlencoded format, often used in URL query strings and POST request bodies, using the specified encoding. If the encoding is not specified, it defaults to UTF-8

Encode the supplied value into www-form-urlencoded format, often used in
URL query strings and POST request bodies, using the specified encoding.
If the encoding is not specified, it defaults to UTF-8
sourceraw docstring

percent-decodeclj

(percent-decode encoded)
(percent-decode encoded encoding)

Decode every percent-encoded character in the given string using the specified encoding, or UTF-8 by default.

Decode every percent-encoded character in the given string using the
specified encoding, or UTF-8 by default.
sourceraw docstring

percent-encodeclj

(percent-encode unencoded)
(percent-encode unencoded encoding)

Percent-encode every character in the given string using either the specified encoding, or UTF-8 by default.

Percent-encode every character in the given string using either the specified
encoding, or UTF-8 by default.
sourceraw docstring

url-decodeclj

(url-decode encoded)
(url-decode encoded encoding)

Returns the url-decoded version of the given string, using either a specified encoding or UTF-8 by default. If the encoding is invalid, nil is returned.

Returns the url-decoded version of the given string, using either a specified
encoding or UTF-8 by default. If the encoding is invalid, nil is returned.
sourceraw docstring

url-encodeclj

(url-encode unencoded)
(url-encode unencoded encoding)

Returns the url-encoded version of the given string, using either a specified encoding or UTF-8 by default.

Returns the url-encoded version of the given string, using either a specified
encoding or UTF-8 by default.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close