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.

endInput

Call this when you will no longer call feedInput() anymore. This can be called either immediately after the last feedInput(), or at any time afterward, such as when getting error.BufferUnderrun from next(). Don't forget to call next*() after endInput() until you get .end_of_document.

Scanner.endInput
pub fn endInput(self: *@This()) void

File

lib/std/json/Scanner.zig:111

Code

pub fn endInput(self: *@This()) void {
    self.is_end_of_input = true;
}