@stdlib/iter-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 iterator which steps according to a provided callback function.
Fill an array-like object view with values returned from an iterator.
Fill an array-like object view from right to left with values returned from an iterator.
Create an iterator which returns the union of two or more iterators.
Create an iterator which returns unique values.
Create an iterator which returns unique values according to a predicate function.
Create an iterator which returns unique values according to a hash function.
Create an iterator which returns numbers incremented by one.
Create an iterator which prepends values to the beginning of a provided iterator.
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 returns the intersection of two or more iterators according to a hash function.
Consume an entire iterator and return the last iterated value.
Return an iterator's length.
Create an iterator which returns evenly spaced numbers over a specified interval.
Create an iterator which returns evenly spaced numbers on a log scale.
Create an iterator which invokes a function for each iterated value.
Create an iterator which transforms iterated values from two or more iterators by applying the iterated values as arguments to a provided function.
Test whether all iterated values are falsy.
Test whether every iterated value fails a test implemented by a predicate function.