dump
Function parameters
Parameters
Represents any JSON value, potentially containing other JSON values.
Types
- Value
- Represents any JSON value, potentially containing other JSON values.
Source
Implementation
pub fn dump(v: Value) void {
const w = std.debug.lockStderrWriter(&.{});
defer std.debug.unlockStderrWriter();
json.Stringify.value(v, .{}, w) catch return;
}