Function writeJsonString
Writes the given JSON object as a JSON string into the destination range.
This function will convert the given JSON value to a string without adding any white space between tokens (no newlines, no indentation and no padding). The output size is thus minizized, at the cost of bad human readability.
Prototype
void writeJsonString(R, bool pretty)( ref R dst, in Json json, int level );
Parameters
Name | Description |
---|---|
dst | References the string output range to which the result is written. |
json | Specifies the JSON value that is to be stringified. |
See Also
Authors
Sönke Ludwig
Copyright
© 2012-2013 RejectedSoftware e.K.
License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.