every()

Test if every set member passes the given function test.

Signature

every(predicate: T => Boolean | Null): Boolean

Description

The every() method tests if every element of the set passes the predicate test.

Parameters

Parameter Type Required Description

predicate

Function

Yes

Function to test the set elements.

Predicate parameters: None

Return value

Type Description

Boolean

Status of predicate applied to all set elements:
true = Every element passes the predicate test.
false = At least one element doesn’t pass the predicate test. An empty set returns true.

Examples

let iter = [1, -2, 3]
iter.every(v => v > 0)
false

Is this article helpful? 

Tell Fauna how the article can be improved:
Visit Fauna's forums or email docs@fauna.com

Thank you for your feedback!