Function endInput [src]

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.

Prototype

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

Parameters

self: *@This()

Source

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