Write

Write interface.

Members

Variables

flush
int function(void* stream) @(nogc) nothrow flush;

returns 0 on success, -1 on error; forces a write of still unwritten data.

stream
void* stream;
Undocumented in source.
write
int function(void* stream, ubyte[] buf) @(nogc) nothrow write;

returns the number of bytes written; tries to write all of buf.

Meta