Skip to main content
Version: 0.11

json

The json module contains functions that work with son structures.

Functions

decode(string)

Decodes a string containing a JSON structure.

json::decode("[1, 2, 3, 4]") => [1, 2, 3, 4]

Returns any type

encode(any)

Encodes a data structure into a json string using minimal encoding.

json::encode([1, 2, 3, 4]) = "[1,2,3,4]"

Returns a string

encode_pretty(any)

Encodes a data structure into a prettified json string.

json::encode_pretty([1, 2, 3, 4]) =
"[
1,
2,
3,
4
]"

Returns a string