IOSink

IO Sink Interface for errors, warnings, etc.

Members

Variables

error
void function(const(char)* msg, const(char)* file, uint line) @(nogc) nothrow error;

Error sink to write errors to.

info
void function(const(char)* msg, const(char)* file, uint line) @(nogc) nothrow info;

Info sink to write informational messages to.

warning
void function(const(char)* msg, const(char)* file, uint line) @(nogc) nothrow warning;

Warning sink to write warnings to.

Meta