Function lockStderrWriter [src]

Allows the caller to freely write to stderr until unlockStdErr is called. During the lock, any std.Progress information is cleared from the terminal. Returns a Writer with empty buffer, meaning that it is in fact unbuffered and does not need to be flushed.

Prototype

pub fn lockStderrWriter(buffer: []u8) *Writer

Parameters

buffer: []u8

Source

pub fn lockStderrWriter(buffer: []u8) *Writer { return std.Progress.lockStderrWriter(buffer); }