forEach Runs a function for each value of iterable (S)
until Calls a function for each value of an iterable. Value itself is ignored (unlike a forEach) (S)
Example: Importing
// If library is stored two directories up under `ixfx/` import { map } from'../../ixfx/dist/iterables.js'; // Import from web import { map } from'https://unpkg.com/ixfx/dist/iterables.js'
A set of functions for working with async generators/iterators.
Functions marked (S) work with endless iterables. That is, they don't require that an iterable finishes.
Conversions
Comparisons
Filtering/finding
dropWhile
)filter
Reshaping
Values
Iterating
forEach Runs a function for each value of iterable (S)
until Calls a function for each value of an iterable. Value itself is ignored (unlike a forEach) (S)
Example: Importing