Skip to content

Function: every()

every<T, S>(source, predicate): boolean

Same semantics as Array.prototype.every, over a single Container. Short-circuits on the first failure.

T

S

Source<T>

(value, index) => value is S

boolean

every<T>(source, predicate): boolean

Same semantics as Array.prototype.every, over a single Container. Short-circuits on the first failure.

T

Source<T>

(value, index) => boolean

boolean