Skip to content

Latest commit

 

History

History
89 lines (71 loc) · 2.91 KB

scan.md

File metadata and controls

89 lines (71 loc) · 2.91 KB

Rx.Observable.prototype.scan(accumulator, [seed])

Applies an accumulator function over an observable sequence and returns each intermediate result. The optional seed value is used as the initial accumulator value.

For aggregation behavior with no intermediate results, see Rx.Observable#reduce.

Note the Rx.Observable.prototype.scan([seed], accumulator) has been removed as per v3.0 and replaced with Rx.Observable.prototype.scan(accumulator, [seed]).

Arguments

  1. accumulator (Function): An accumulator function to be invoked on each element with the following arguments:
    1. acc: Any - the accumulated value.
    2. currentValue: Any - the current value
    3. index: Number - the current index
    4. source: Observable - the current observable instance
  2. [seed] (Any): The initial accumulator value.

Returns

(Observable): An observable sequence which results from the comonadic bind operation.

Example

/* Without a seed */
var source = Rx.Observable.range(1, 3)
  .scan(function (acc, x, i, source) { return acc + x; });

var subscription = source.subscribe(
  function (x) {
    console.log('Next: %s', x);
  },
  function (err) {
    console.log('Error: %s', err);
  },
  function () {
    console.log('Completed');
  });

// => Next: 1
// => Next: 3
// => Next: 6
// => Completed

/* With a seed */
var source = Rx.Observable.range(1, 3)
    .scan(function (acc, x, i, source) { return acc * x; }, 1);

var subscription = source.subscribe(
  function (x) {
    console.log('Next: %s', x);
  },
  function (err) {
    console.log('Error: %s', err);
  },
  function () {
    console.log('Completed');
  });

// => Next: 1
// => Next: 2
// => Next: 6
// => Completed

Location

File:

Dist:

Prerequisites:

  • None

NPM Packages:

NuGet Packages:

Unit Tests: