Function stringify [src]
Alias for std.json.stringify.stringify
Writes the given value to the std.io.Writer stream.
See WriteStream for how the given value is serialized into JSON.
The maximum nesting depth of the output JSON document is 256.
See also stringifyMaxDepth and stringifyArbitraryDepth.
Prototype
pub fn stringify( value: anytype, options: StringifyOptions, out_stream: anytype, ) @TypeOf(out_stream).Error!void
Parameters
options: StringifyOptions
Source
pub fn stringify(
value: anytype,
options: StringifyOptions,
out_stream: anytype,
) @TypeOf(out_stream).Error!void {
var jw = writeStream(out_stream, options);
defer jw.deinit();
try jw.write(value);
}