ConcatInputStream.readFromStream

Reads from the streams that this one is concatenating, reading from the first stream until it's empty, and then reading from the second stream.

struct ConcatInputStream(E, S1, S2)
readFromStream
(
E[] buffer
)
if (
isInputStream!(S1, E) &&
)

Parameters

buffer E[]

The buffer to read into.

Return Value

The number of elements read, or an error.

Meta