You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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()