Const
Returns an AsyncStream that yields elements of all Iterable parameters in order.
Type of items in the source.
Array of Iterables to concatenate.
AsyncStream that yields elements of all Iterable parameters in order.
const result = concatAsync<number>([1, 2, 3], [4, 5, 6]);console.log(result); // [1, 2, 3, 4, 5, 6] Copy
const result = concatAsync<number>([1, 2, 3], [4, 5, 6]);console.log(result); // [1, 2, 3, 4, 5, 6]
Returns an AsyncStream that yields elements of all Iterable parameters in order.