Concatenates the source iterable with any number of additional iterables in the order provided.
Element type yielded by each iterable.
Source iterable to enumerate first.
Additional iterables appended sequentially after the source.
A deferred iterable that yields all items from src followed by each iterable in sequences.
src
sequences
const combined = _concat([1, 2], [3], [4, 5]);console.log([...combined]); // [1, 2, 3, 4, 5] Copy
const combined = _concat([1, 2], [3], [4, 5]);console.log([...combined]); // [1, 2, 3, 4, 5]
or using the curried version:
const combined = pipeInto([1, 2], concat([3], [4, 5]));console.log([...combined]); // [1, 2, 3, 4, 5] Copy
const combined = pipeInto([1, 2], concat([3], [4, 5]));console.log([...combined]); // [1, 2, 3, 4, 5]
Concatenates the source iterable with any number of additional iterables in the order provided.