yajl.decoder

Yajl Decoder

Public Imports

std.json
public import std.json;
Undocumented in source.

Members

Structs

Decoder
struct Decoder

Decoder provides the method for deserializing JSON into a D object.

Examples

Decoder decoder;
if (decoder.decode(`{"foo":"bar"}`))
    assert(decoder.decodedValue!(string[string]) == ["foo":"bar"]);

See Also

Meta

License

<a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.

Authors

Masahiro Nakagawa