streams.types.concat

Concatenating streams that linearly combine reading and writing from multiple resources.

Members

Functions

concatInputStreamFor
ConcatInputStream!(StreamType!S1, S1, S2) concatInputStreamFor(S1 stream1, S2 stream2)

Function to obtain a concatenating input stream that reads from stream1, and then stream2.

Structs

ConcatInputStream
struct ConcatInputStream(E, S1, S2)

A concatenating input stream that reads from one stream until it returns zero elements, then reads from the second stream.

Meta