Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

pushIndentation

Stringify.pushIndentation
fn pushIndentation(self: *Stringify, mode: IndentationMode) !void

File

lib/std/json/Stringify.zig:127

Code

fn pushIndentation(self: *Stringify, mode: IndentationMode) !void {
    switch (safety_checks) {
        .checked_to_fixed_depth => {
            BitStack.pushWithStateAssumeCapacity(&self.nesting_stack, &self.indent_level, @backingInt(mode));
        },
        .assumed_correct => {
            self.indent_level += 1;
        },
    }
}