Module encoding/json
encoding/json
JSON parsing and serialization.
Provides a dynamically-typed JSON value tree.
Example
{ json_parse, json_stringify, JsonValue } :: import "std/encoding/json";
{ Exception } :: import "std/error";
exn := Exception(throw : ((err) -> { unwind (); }));
v := json_parse(`{"x": 1}`);
println(json_stringify(v));
Types
JsonValue
struct
JsonValue
Trait Implementations
Index