@szilanor/stream
    Preparing search index...

    Function appendWithAsync

    • Appends the specified iterables to the source iterable.

      Type Parameters

      • T

        The type of the elements in the iterables.

      Parameters

      • ...iterables: Iterable<T, any, any>[]

        The iterables to append.

      Returns AsyncOperationFunction<T, T>

      An AsyncOperationFunction that appends the specified iterables to the source iterable.

      const result = appendWithAsync<number>([1, 2, 3], [4, 5, 6]);
      console.log(result); // [1, 2, 3, 4, 5, 6]