| Returns a Reducer that combines multiple input reducers according to the given "shape" by providing input values to all of them and collecting the outputs in the shape.
|
| Returns a Reducer that always outputs the given value , and does not accept input values.
|
| Returns a Reducer that outputs false as long as the given elem has not been encountered the given amount of times in the input values, true otherwise.
|
| Returns a Reducer that returns true if the input values contain the given slice sequence amount times. Otherwise,
returns false.
|
| Returns a Reducer with the given options:
|
| Returns a Reducer of which the input, state, and output types are the same.
|
| Returns a Reducer of which the state and output types are the same.
|
| Returns a Reducer that returns true if the last input values match the given slice values repeated amount times. Otherwise,
returns false.
|
| Returns a Reducer that ouputs true when the received elements match the given other stream source according to the eq instance, false otherwise.
|
| Returns a Reducer that ouputs true as long as all input values satisfy the given pred , false otherwise.
|
| Returns a Reducer that uses the given init and next values to fold the input values into
result values.
|
| Returns a Reducer that joins the given input values into a string using the given options.
|
| Returns a Reducer that ouputs false as long as no input value satisfies given pred , true otherwise.
|
| Returns a Reducer that returns true if the first input values match the given slice values repeated amount times. Otherwise,
returns false.
|
| Returns a Reducer that collects received input values in an array, and returns a copy of that array as an output value when requested.
|
| Returns a Reducer that collects received input tuples into a mutable JS Map, and returns
a copy of that map when output is requested.
|
| Returns a Reducer that collects received input tuples into a mutable JS multimap, and returns
a copy of that map when output is requested.
|
| Returns a Reducer that collects 2-tuples containing keys and values into a plain JS object, and
returns a copy of that object when output is requested.
|
| Returns a Reducer that collects received input values into a mutable JS Set, and returns
a copy of that map when output is requested.
|