Rx.Observable.prototype.every(predicate, [thisArg])
Determines whether all elements of an observable sequence satisfy a condition.
参数
predicate
(Function
): A function to test each element for a condition.[thisArg]
(Function
): Object to use as this when executing callback.
返回值
(Observable
): An observable sequence containing a single element determining whether all elements in the source sequence pass the test in the specified predicate.