Function writeStream [src]

Alias for std.json.stringify.writeStream

See WriteStream for documentation. Equivalent to calling writeStreamMaxDepth with a depth of 256. The caller does not need to call deinit() on the returned object.

Prototype

pub fn writeStream( out_stream: anytype, options: StringifyOptions, ) WriteStream(@TypeOf(out_stream), .{ .checked_to_fixed_depth = 256 })

Parameters

options: StringifyOptions

Source

pub fn writeStream( out_stream: anytype, options: StringifyOptions, ) WriteStream(@TypeOf(out_stream), .{ .checked_to_fixed_depth = 256 }) { return writeStreamMaxDepth(out_stream, options, 256); }