ConcatExtensions<T> extension

Extends the Stream class with the ability to concatenate one stream with another.

on

Methods

concatWith(Iterable<Stream<T>> other) Stream<T>
Returns a Stream that emits all items from the current Stream, then emits all items from the given streams, one after the next.