@stdlib/math-iter
Math iterators.
Math iterators.
Math operator iterators.
Math iterators for special functions.
Create an iterator which computes the absolute value of each iterated value.
Create an iterator which performs element-wise addition of two or more iterators.
Create an iterator which performs element-wise division of two or more iterators.
Create an iterator which performs an element-wise modulo operation of two or more iterators.
Create an iterator which performs element-wise multiplication of two or more iterators.
Create an iterator which returns the intersection of two or more iterators according to a hash function.
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.
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.
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 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.