Standard iterator utilities.
Return an iterator's length.
Create an iterator which returns evenly spaced numbers over a specified interval.
Create an iterator which returns a subsequence of iterated values from a provided iterator.
Create an empty iterator.
Create an iterator which skips the last value of a provided iterator.
Consume an entire iterator and return the last iterated value.
Create an iterator which invokes a function for each iterated value.
Standard math.
Create an iterator which always returns the same value.
Multidimensional arrays.
Create an iterator which returns evenly spaced numbers on a log scale.
Create an iterator which iteratively returns the number of iterated values.
Create an iterator which prepends values to the beginning of a provided iterator.
Create an iterator which returns the first `n` values of a provided iterator.
Advance an iterator.
Create an iterator which returns evenly spaced dates over a specified interval.
Standardized module functions free of business logic
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 returns numbers incremented by one.
Test whether at least `n` iterated values are truthy.
Random numbers.
Create an iterator which replicates each iterated value a specified number of times.
Create an iterator which rejects the values of another iterator according to a predicate function.