Function noopFlush [src]
Does nothing.
Prototype
pub fn noopFlush(w: *Writer) Error!void
Parameters
w: *Writer
Possible Errors
See the Writer
implementation for detailed diagnostics.
Source
pub fn noopFlush(w: *Writer) Error!void {
_ = w;
}