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