Function writePrettyJsonString
Writes the given JSON object as a prettified JSON string into the destination range.
The output will contain newlines and indents to make the output human readable.
Prototype
void writePrettyJsonString(R)(ref R dst, in Json json, int level = 0)( 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. |
level | Specifies the base amount of indentation for the output. Indentation is always done using tab characters. |
See Also
Authors
Sönke Ludwig
Copyright
© 2012 RejectedSoftware e.K.
License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.