OutputBuffer

A buffered output stream.

Members

Aliases

opCall
alias opCall = append
Undocumented in source.

Functions

append
OutputBuffer append(const(void)[] )
Undocumented in source.
slice
void[] slice()
Undocumented in source.
writer
size_t writer(size_t delegate(void[]) producer)
Undocumented in source.

Inherited Members

From OutputStream

write
size_t write(const(void)[] src)

Write to stream from a source array. The provided src content will be written to the stream.

copy
OutputStream copy(InputStream src, size_t max)

Transfer the content of another stream to this one. Returns a reference to this class, and throws IOException on failure.

output
OutputStream output()

Return the upstream sink.

Meta