OutputStreamRange

A struct that, when initialized with an output stream, acts as a Phobos- style output range for elements of the same type.

struct OutputStreamRange (
S
E = StreamType!S
) if (
isOutputStream!(S, E)
) {}

Members

Functions

put
void put(E[] buffer)

Writes all elements in buffer to the underlying stream.

Meta