@metreeca/pipe - v0.9.11
    Preparing search index...

    Function chain

    • Chains multiple data sources into a single stream, preserving source order.

      Items are emitted in source order: all items from the first source, then all items from the second source, and so on. Each source is fully consumed before moving to the next.

      Type Parameters

      • V

        The type of items in the streams

      Parameters

      • ...sources: readonly (Data<V> | Promise<Data<V>>)[]

        The data sources to chain (can be synchronous or asynchronous)

      Returns Pipe<V>

      A pipe containing all items from all sources in order