@stdlib/iter-concat
Create an iterator which iterates over the values of two or more iterators.
Create an iterator which iterates over the values of two or more iterators.
Create an iterator which always returns the same value.
Create an iterator which iteratively returns the number of iterated values.
Create an iterator which cumulatively tests whether at least one iterated value is truthy.
Create an iterator which cumulatively tests whether at least `n` iterated values are truthy.
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.
Return the first iterated value.
Create a fluent interface for chaining together iterator methods.
Create an iterator which invokes a function for each iterated value before returning the iterated value.
Create an iterator which returns the first `n` values of a provided iterator.