Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 950 Bytes

File metadata and controls

26 lines (15 loc) · 950 Bytes

{% if book.isPdf %}

reduce

{% else %}

{% endif %}

Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence. The specified seed value is used as the initial accumulator value.

For aggregation behavior with incremental intermediate results, see the scan method.

Arguments

  1. accumulator (Function): An accumulator function to be invoked on each element.
  2. [seed] (Any): The initial accumulator value.

Returns

(Observable): An observable sequence containing a single element with the final accumulator value.

Example