Function appendWith

  • Appends the given Iterables to the end of the source Iterable.

    Type Parameters

    • T

      Type of items in the Iterables.

    Parameters

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

      Iterables to append.

    Returns OperationFunction<T, T>

    Returns a new Iterable that yields the elements of the source Iterable followed by the elements of the given Iterables.

    const result = appendWith([4, 5, 6], [7, 8, 9])([1, 2, 3]);
    console.log([...result]); // [1, 2, 3, 4, 5, 6, 7, 8, 9]