Readonly
Folds every element into an accumulator by applying an operation, returning the final result
Waits until the end of the stream
Waits until contract subscription is ready and then returns a promise with the result
Waits for the first element or the end of the stream
Executes handler on each item
Merges two streams
Creates a stream which gives the current iteration count as well as the value
Alias for the .map((item) => { f(item); return item; })
.map((item) => { f(item); return item; })
Skip elements where f(item) == false
f(item) == false
Modifies items and skip all undefined
undefined
Modifies items
Creates an iterator that flattens nested structure
Creates an iterator that skips the first n elements
Creates an iterator that skips elements based on a predicate
Creates an iterator that yields the first n elements, or fewer if the underlying iterator ends sooner
Creates an iterator that yields elements based on a predicate
Creates an iterator that yields mapped elements based on a predicate until first undefined is found
Folds every element into an accumulator by applying an operation, returning the final result