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.

popIndentation

Stringify.popIndentation
fn popIndentation(self: *Stringify, expected_mode: IndentationMode) void

File

lib/std/json/Stringify.zig:137

Code

fn popIndentation(self: *Stringify, expected_mode: IndentationMode) void {
    switch (safety_checks) {
        .checked_to_fixed_depth => {
            assert(BitStack.popWithState(&self.nesting_stack, &self.indent_level) == @backingInt(expected_mode));
        },
        .assumed_correct => {
            self.indent_level -= 1;
        },
    }
}