• Merges multiple async-iterable sequences into one async-iterable sequence by combining each element from the first source with the latest element from the other sources, if any.

    Type Parameters

    • T

      The type of the elements in the first source sequence.

    • T2

      The type of the elements in the second source sequence.

    Parameters

    • source2: AsyncIterable<T2>

      Second async-iterable source.

    Returns OperatorAsyncFunction<T, [T, T2]>

    An async-iterable sequence containing the result of combining each element of the first source with the latest element from the second source, if any as an array.

  • Merges multiple async-iterable sequences into one async-iterable sequence by combining each element from the first source with the latest element from the other sources, if any.

    Type Parameters

    • T

      The type of the elements in the first source sequence.

    • T2

      The type of the elements in the second source sequence.

    • T3

      The type of the elements in the third source sequence.

    Parameters

    • source2: AsyncIterable<T2>

      Second async-iterable source.

    • source3: AsyncIterable<T3>

      Third async-iterable source.

    Returns OperatorAsyncFunction<T, [T, T2, T3]>

    An async-iterable sequence containing the result of combining each element of the first source with the latest element from the second source, if any as an array.

  • Merges multiple async-iterable sequences into one async-iterable sequence by combining each element from the first source with the latest element from the other sources, if any.

    Type Parameters

    • T

      The type of the elements in the first source sequence.

    • T2

      The type of the elements in the second source sequence.

    • T3

      The type of the elements in the third source sequence.

    • T4

      The type of the elements in the fourth source sequence.

    Parameters

    • source2: AsyncIterable<T2>

      Second async-iterable source.

    • source3: AsyncIterable<T3>

      Third async-iterable source.

    • source4: AsyncIterable<T4>

      Fourth async-iterable source.

    Returns OperatorAsyncFunction<T, [T, T2, T3, T4]>

    An async-iterable sequence containing the result of combining each element of the first source with the latest element from the second source, if any as an array.

  • Merges multiple async-iterable sequences into one async-iterable sequence by combining each element from the first source with the latest element from the other sources, if any.

    Type Parameters

    • T

      The type of the elements in the first source sequence.

    • T2

      The type of the elements in the second source sequence.

    • T3

      The type of the elements in the third source sequence.

    • T4

      The type of the elements in the fourth source sequence.

    • T5

      The type of the elements in the fifth source sequence.

    Parameters

    • source2: AsyncIterable<T2>

      Second async-iterable source.

    • source3: AsyncIterable<T3>

      Third async-iterable source.

    • source4: AsyncIterable<T4>

      Fourth async-iterable source.

    • source5: AsyncIterable<T5>

      Fifth async-iterable source.

    Returns OperatorAsyncFunction<T, [T, T2, T3, T4, T5]>

    An async-iterable sequence containing the result of combining each element of the first source with the latest element from the second source, if any as an array.

  • Merges multiple async-iterable sequences into one async-iterable sequence by combining each element from the first source with the latest element from the other sources, if any.

    Type Parameters

    • T

      The type of the elements in the first source sequence.

    • T2

      The type of the elements in the second source sequence.

    • T3

      The type of the elements in the third source sequence.

    • T4

      The type of the elements in the fourth source sequence.

    • T5

      The type of the elements in the fifth source sequence.

    • T6

      The type of the elements in the sixth source sequence.

    Parameters

    • source2: AsyncIterable<T2>

      Second async-iterable source.

    • source3: AsyncIterable<T3>

      Third async-iterable source.

    • source4: AsyncIterable<T4>

      Fourth async-iterable source.

    • source5: AsyncIterable<T5>

      Fifth async-iterable source.

    • source6: AsyncIterable<T6>

      Sixth async-iterable source.

    Returns OperatorAsyncFunction<T, [T, T2, T3, T4, T5, T6]>

    An async-iterable sequence containing the result of combining each element of the first source with the latest element from the second source, if any as an array.

  • Merges multiple async-iterable sequences into one async-iterable sequence by combining each element from the first source with the latest element from the other sources, if any.

    Type Parameters

    • T

      The type of the elements in the source sequences.

    Parameters

    • Rest ...sources: AsyncIterable<T>[]

      The source sequences.

    Returns OperatorAsyncFunction<T, T[]>

    An async-iterable sequence containing the result of combining each element of the first source with the latest element from the second source, if any as an array.

Generated using TypeDoc