Back to Rxjs

This is RxJS v 4. Find the latest version here

doc/api/core/operators/some.md

4.1.02.2 KB
Original Source

This is RxJS v 4. Find the latest version here

Rx.Observable.prototype.some([predicate], [thisArg])

Determines whether any element of an observable sequence satisfies a condition if present, else if any items are in the sequence.

Arguments

  1. predicate (Function): A function to test each element for a condition.
  2. [thisArg] (Any): Object to use as this when executing callback.

Returns

(Observable): An observable sequence containing a single element determining whether one of the elements in the source sequence pass the test in the specified predicate.

Example

js
var source = Rx.Observable.of(1,2,3,4,5)
  .some(function (x) { return x % 2 === 0; });

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

// => Next: true
// => Completed

Location

File:

Dist:

Prerequisites:

NPM Packages:

NuGet Packages:

Unit Tests: