Skip to content

Output JSON object or array without DOM library #11

Open
@d9k

Description

@d9k

README needs more code examples. It's unclear how to output JSON object or JSON array without the use of DOM library and intermediate DOM representation.

Something like

    writer.StartObject();
    writer.Key("hello");
    writer.String("world");
    writer.StartArray();
    for (unsigned i = 0; i < 4; i++)
        writer.Uint(i);
    writer.EndArray();
    writer.EndObject()

in http://rapidjson.org/md_doc_sax.html

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions