@stdlib/iter-do-while-each
Create an iterator which, while a test condition is true, 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.
Test whether at least `n` iterated values are truthy.
Test whether at least `n` iterated values pass a test implemented by a predicate function.
Create an iterator which returns a sequence of numbers according to a specified increment.
Create an iterator which steps by a specified amount.
Advances an iterator.
Test whether at least one iterated value is truthy.
Test whether at least one iterated value passes a test implemented by a predicate function.
Create an iterator which iterates over the values of two or more iterators.
Create an iterator which always returns the same value.