InputRangeStream

An input stream implementation that wraps around a Phobos-style input range.

struct InputRangeStream (
R
E = ElementType!R
) if (
isInputRange!R
) {}

Members

Functions

readFromStream
StreamResult readFromStream(E[] buffer)

Pops elements from the underlying input range to fill buffer.

Meta