Function: every()
Call Signature
Section titled “Call Signature”every<
T,S>(source,predicate):boolean
Same semantics as Array.prototype.every, over a single Container.
Short-circuits on the first failure.
Type Parameters
Section titled “Type Parameters”T
S
Parameters
Section titled “Parameters”source
Section titled “source”Source<T>
predicate
Section titled “predicate”(value, index) => value is S
Returns
Section titled “Returns”boolean
Call Signature
Section titled “Call Signature”every<
T>(source,predicate):boolean
Same semantics as Array.prototype.every, over a single Container.
Short-circuits on the first failure.
Type Parameters
Section titled “Type Parameters”T
Parameters
Section titled “Parameters”source
Section titled “source”Source<T>
predicate
Section titled “predicate”(value, index) => boolean
Returns
Section titled “Returns”boolean