Concatenate<T> extension
Utilities to append or prepend to a stream.
- on
-
- Stream<
T>
- Stream<
Methods
-
followedBy(
Stream< T> next) → Stream<T> -
Available on Stream<
Emits all values and errors fromT> , provided by the Concatenate extensionnext
following all values and errors from this stream. -
startWith(
T initial) → Stream< T> -
Available on Stream<
EmitsT> , provided by the Concatenate extensioninitial
before any values or errors from the this stream. -
startWithMany(
Iterable< T> initial) → Stream<T> -
Available on Stream<
Emits all values inT> , provided by the Concatenate extensioninitial
before any values or errors from this stream. -
startWithStream(
Stream< T> initial) → Stream<T> -
Available on Stream<
Emits all values and errors inT> , provided by the Concatenate extensioninitial
before any values or errors from this stream.