@stdlib/iter-pipeline-thunk
Create an iterator thunk.
Create an iterator thunk.
Create an iterator which skips the last value of a provided iterator.
Create an iterator which appends additional values to the end of a provided iterator.
Create an iterator which rejects the values of another iterator according to a predicate function.
Standard iterator utilities.
Create an iterator which returns evenly spaced dates over a specified interval.
Create an iterator which removes consecutive duplicated values.
Create an iterator which removes consecutive values that resolve to the same value according to a provided function.
Create an iterator which, while a test condition is false, invokes a function for each iterated value before returning the iterated value.
Create an iterator which, while a test condition is true, invokes a function for each iterated value before returning the iterated value.
Create an empty iterator.
Test whether all iterated values are truthy.
Test whether every iterated value passes a test implemented by a predicate function.
Create an iterator which replaces all values from a provided iterator from a start index to an end index with a static value.
Create an iterator which filters the values of another iterator according to a predicate function.
Create an iterator which both filters and maps the values of another iterator.
Create an iterator which replicates each iterated value a specified number of times.
Create an iterator which replicates each iterated value according to a provided function.
Create an iterator which skips the first value of a provided iterator.
Create an iterator which returns a subsequence of iterated values from a provided iterator.