every
Returns an Observable that emits whether or not every item of the source satisfies the condition specified.
Parameters
predicate |
A function for determining if an item meets a specified condition. |
thisArg |
Optional. Default is Optional object to use for |
Returns
OperatorFunction<T, boolean>
: An Observable of booleans that determines if all items of the source Observable meet the condition specified.
Description
Example
A simple example emitting true if all elements are less than 5, false otherwise