• Concatenates the second async-iterable sequence to the first async-iterable sequence upon successful termination of the first.

    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

    • v1: AsyncIterable<T>

      First async-iterable source.

    • v2: AsyncIterable<T2>

      Second async-iterable source.

    Returns AsyncIterable<T | T2>

    An async-iterable sequence that contains the elements of the first sequence, followed by those of the second the sequence.

  • Concatenates all async-iterable sequences in the given sequences, as long as the previous async-iterable sequence terminated successfully.

    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

    • v1: AsyncIterable<T>

      First async-iterable source.

    • v2: AsyncIterable<T2>

      Second async-iterable source.

    • v3: AsyncIterable<T3>

      Third async-iterable source.

    Returns AsyncIterable<T | T2 | T3>

    An async-iterable sequence that contains the elements of each given sequence, in sequential order.

  • Concatenates all async-iterable sequences in the given sequences, as long as the previous async-iterable sequence terminated successfully.

    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

    • v1: AsyncIterable<T>

      First async-iterable source.

    • v2: AsyncIterable<T2>

      Second async-iterable source.

    • v3: AsyncIterable<T3>

      Third async-iterable source.

    • v4: AsyncIterable<T4>

      Fourth async-iterable source.

    Returns AsyncIterable<T | T2 | T3 | T4>

    An async-iterable sequence that contains the elements of each given sequence, in sequential order.

  • Concatenates all async-iterable sequences in the given sequences, as long as the previous async-iterable sequence terminated successfully.

    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

    • v1: AsyncIterable<T>

      First async-iterable source.

    • v2: AsyncIterable<T2>

      Second async-iterable source.

    • v3: AsyncIterable<T3>

      Third async-iterable source.

    • v4: AsyncIterable<T4>

      Fourth async-iterable source.

    • v5: AsyncIterable<T5>

      Fifth async-iterable source.

    Returns AsyncIterable<T | T2 | T3 | T4 | T5>

    An async-iterable sequence that contains the elements of each given sequence, in sequential order.

  • Concatenates all async-iterable sequences in the given sequences, as long as the previous async-iterable sequence terminated successfully.

    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

    • v1: AsyncIterable<T>

      First async-iterable source.

    • v2: AsyncIterable<T2>

      Second async-iterable source.

    • v3: AsyncIterable<T3>

      Third async-iterable source.

    • v4: AsyncIterable<T4>

      Fourth async-iterable source.

    • v5: AsyncIterable<T5>

      Fifth async-iterable source.

    • v6: AsyncIterable<T6>

      Sixth async-iterable source.

    Returns AsyncIterable<T | T2 | T3 | T4 | T5 | T6>

    An async-iterable sequence that contains the elements of each given sequence, in sequential order.

Generated using TypeDoc