every
signature: every(predicate: function, thisArg: any): Observable
every(predicate: function, thisArg: any): ObservableIf all values pass predicate before completion emit true, else false.
Examples
Example 1: Some values false
( Stackblitz | jsBin | jsFiddle )
// RxJS v6+
import { every } from 'rxjs/operators';
import { of } from 'rxjs';
//emit 5 values
const source = of(1, 2, 3, 4, 5);
const example = source.pipe(
//is every value even?
every(val => val % 2 === 0)
);
//output: false
const subscribe = example.subscribe(val => console.log(val));Example 2: All values true
( Stackblitz | jsBin | jsFiddle )
Example 3: Values arriving over time and completing stream prematurely due to every returning false
( Stackblitz )
Additional Resources
every 📰 - Official docs
📁 Source Code: https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/every.ts
Last updated