View source code
Display the source code in std/json.d from which this page was generated on
github.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.
Requires a signed-in GitHub account. This works well for small changes.
If you'd like to make larger changes you may want to consider using
local clone.
Page wiki
View or edit the community-maintained wiki page associated with this page.
Function std.json.toJSON
Takes a tree of JSON values and returns the serialized string.
Any Object types will be serialized in a key-sorted order.
If
is false no whitespaces are generated.
If pretty
is true serialized string is formatted to be human-readable.
Set the flag is set in pretty
to encode NaN/Infinity as strings.
options
Prototype
string toJSON( const(JSONValue*) root, const(bool) pretty = false, const(JSONOptions) options = cast(JSONOptions)0 );
Authors
Jeremie Pelletier, David Herberth