Creates a pipeline of functions, where the output of each function is passed as input to the next. The pipe starts by receiving an iterable as the first argument.
An iterable or AsyncIterable, like an Array or String.
// Returns an Iterable<array> representing ['0', '1', '2', '3', '4']const a = it.pipe( it.range(5), it.map((x) => x.toString()),) Copy
// Returns an Iterable<array> representing ['0', '1', '2', '3', '4']const a = it.pipe( it.range(5), it.map((x) => x.toString()),)
Creates a pipeline of functions, where the output of each function is passed as input to the next. The pipe starts by receiving an iterable as the first argument.