• Merges multiple iterable sequences into one iterable sequence by combining their elements in a pairwise fashion.

    Type Parameters

    • T

      The type of the first async-iterable sequence.

    • T2

      The type of the second async-iterable sequence.

    Parameters

    • source: Iterable<T>

      The first async-iterable source.

    • source2: Iterable<T2>

      The second async-iterable source.

    Returns Iterable<[T, T2]>

    Async iterable with an array of each element from the source sequences in a pairwise fashion.

  • Merges multiple iterable sequences into one iterable sequence by combining their elements in a pairwise fashion.

    Type Parameters

    • T

      The type of the first async-iterable sequence.

    • T2

      The type of the second async-iterable sequence.

    • T3

      The type of the third async-iterable sequence.

    Parameters

    • source: Iterable<T>

      The first async-iterable source.

    • source2: Iterable<T2>

      The second async-iterable source.

    • source3: Iterable<T3>

      The third async-iterable source.

    Returns Iterable<[T, T2, T3]>

    Async iterable with an array of each element from the source sequences in a pairwise fashion.

  • Merges multiple iterable sequences into one iterable sequence by combining their elements in a pairwise fashion.

    Type Parameters

    • T

      The type of the first async-iterable sequence.

    • T2

      The type of the second async-iterable sequence.

    • T3

      The type of the third async-iterable sequence.

    • T4

      The type of the fourth async-iterable sequence.

    Parameters

    • source: Iterable<T>

      The first async-iterable source.

    • source2: Iterable<T2>

      The second async-iterable source.

    • source3: Iterable<T3>

      The third async-iterable source.

    • source4: Iterable<T4>

      The fourth async-iterable source.

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

    Async iterable with an array of each element from the source sequences in a pairwise fashion.

  • Merges multiple iterable sequences into one iterable sequence by combining their elements in a pairwise fashion.

    Type Parameters

    • T

      The type of the first async-iterable sequence.

    • T2

      The type of the second async-iterable sequence.

    • T3

      The type of the third async-iterable sequence.

    • T4

      The type of the fourth async-iterable sequence.

    • T5

      The type of the fifth async-iterable sequence.

    Parameters

    • source: Iterable<T>

      The first async-iterable source.

    • source2: Iterable<T2>

      The second async-iterable source.

    • source3: Iterable<T3>

      The third async-iterable source.

    • source4: Iterable<T4>

      The fourth async-iterable source.

    • source5: Iterable<T5>

      The fifth async-iterable source.

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

    Async iterable with an array of each element from the source sequences in a pairwise fashion.

  • Merges multiple iterable sequences into one iterable sequence by combining their elements in a pairwise fashion.

    Type Parameters

    • T

      The type of the first async-iterable sequence.

    • T2

      The type of the second async-iterable sequence.

    • T3

      The type of the third async-iterable sequence.

    • T4

      The type of the fourth async-iterable sequence.

    • T5

      The type of the fifth async-iterable sequence.

    • T6

      The type of the sixth async-iterable sequence.

    Parameters

    • source: Iterable<T>

      The first async-iterable source.

    • source2: Iterable<T2>

      The second async-iterable source.

    • source3: Iterable<T3>

      The third async-iterable source.

    • source4: Iterable<T4>

      The fourth async-iterable source.

    • source5: Iterable<T5>

      The fifth async-iterable source.

    • source6: Iterable<T6>

      The sixth async-iterable source.

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

    Async iterable with an array of each element from the source sequences in a pairwise fashion.

  • Merges multiple iterable sequences into one iterable sequence by combining their elements in a pairwise fashion.

    Type Parameters

    • T

      The type of elements in the source sequences.

    Parameters

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

      The source sequences.

    Returns Iterable<T[]>

    Async iterable with an array of each element from the source sequences in a pairwise fashion.

Generated using TypeDoc