OutputStream

Interface for all classes implementing writeable streams.

Members

Functions

finalize
void finalize()

Flushes and finalizes the stream.

flush
void flush()

Flushes the stream and makes sure that all data is being written to the output device.

write
size_t write(ubyte[] bytes, IOMode mode)
void write(ubyte[] bytes)
void write(char[] bytes)

Writes an array of bytes to the stream.

Meta