• An implementation of concat that buffers all source stream events

    Marble diagram:

    --1--2---3---4-|
    -a--b-c--d-|
    --------X---------Y---------Z-
              concat
    --1--2---3---4-abcdXY-------Z-
    

    This is inspired by RxJS's concat as documented at http://rxmarbles.com/#concat and behaves differently than xstream's concat as discussed in https://github.com/staltz/xstream/issues/170.

    Type Parameters

    • T

    Parameters

    • Rest ...streams: Stream<T>[]

    Returns Stream<T>

Generated using TypeDoc