doc/api/core/operators/where.md
Rx.Observable.prototype.filter(predicate, [thisArg])Rx.Observable.prototype.where(predicate, [thisArg])Filters the elements of an observable sequence based on a predicate.
predicate (Function): A function to test each source element for a condition. The callback is called with the following information:
[thisArg] (Any): Object to use as this when executing the predicate.(Observable): An observable sequence that contains elements from the input sequence that satisfy the condition.
var source = Rx.Observable.range(0, 5)
.filter(function (x, idx, obs) {
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: 0
// => Next: 2
// => Next: 4
// => Completed
File:
Dist:
Prerequisites:
NPM Packages:
NuGet Packages:
Unit Tests: