Returns an OperationFunction that concatenates the given values to the end of the source Iterable.
Type of items in the Iterables.
Values to concatenate.
An OperationFunction that concatenates the given values to the end of the source Iterable.
const result = endWith(4, 5, 6)([1, 2, 3]);console.log([...result]); // [1, 2, 3, 4, 5, 6] Copy
const result = endWith(4, 5, 6)([1, 2, 3]);console.log([...result]); // [1, 2, 3, 4, 5, 6]
Returns an OperationFunction that concatenates the given values to the end of the source Iterable.