set.every()
Test if every Set member passes the given function test.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
predicate |
Yes |
Function to test the Set elements. Predicate parameters: None |
Return value
Type | Description |
---|---|
Status of predicate applied to all Set elements: |
Examples
// `toSet()` converts an Array to a Set.
let set = [1, -2, 3].toSet()
set.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!