Appends the specified iterables to the source iterable.
The type of the elements in the iterables.
The iterables to append.
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] Copy
const result = appendWithAsync<number>([1, 2, 3], [4, 5, 6]);console.log(result); // [1, 2, 3, 4, 5, 6]
Appends the specified iterables to the source iterable.