Returns the results of the chain as an array.
If data
is not supplied, the last value given calling input(data)
is used.
Return the results of the chain as a regular generator.
If data
is not supplied, the last value given calling input(data)
is used.
Gets the average numerical value (if relevant)
Chunk values into arrays
Debounce values
Delay emitting values
Ignore values that match predicate
(opposite of filter()
)
Emit values until period
has elapsed
Only allow values that meet predicate
to pass
Gets the first output value from the chain.
If data
is not supplied, the last value given calling input(data)
is used.
Uses a function as a source of values
Sets data
to be the data for the chain
Gets the last output value from the chain.
If data
is not supplied, the last value given calling input(data)
is used.
Gets the maximum numerical value (if relevant)
Gets the minimum numerical value (if relevant)
Only emit values that have ranked higher than previously seen
Flatten values in an array into a single value
Gets the total of numerical values
Take limit
number of values from the chain before ending
Emits a running tally of how many values have been emitted
Transform an input value to an output
Lazy execution of a chain