doc/api/core/operators/includes.md
Rx.Observable.prototype.includes(searchElement, [fromIndex])Rx.Observable.prototype.contains(searchElement, [fromIndex]) DEPRECATEDDetermines whether an observable sequence includes a specified element with an optional from index.
searchElement (Any): The value to locate in the source sequence.[fromIndex] (Number): The index to start the search. If not specified, defaults to 0.(Observable): An observable sequence containing a single element determining whether the source sequence includes an element that has the specified value with an optional from index.
/* Without an index */
var source = Rx.Observable.of(42)
.includes(42);
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
/* With an index */
var source = Rx.Observable.of(1,2,3)
.includes(2, 1);
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
File:
Dist:
Prerequisites:
NPM Packages:
NuGet Packages:
Unit Tests: