set.any()
Test if any element of a Set matches a provided predicate.
Description
Tests if any element of the calling Set matches a provided predicate function.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
predicate |
Yes |
Anonymous predicate function that:
The method returns true if the predicate is true for any element in the Set. |
Return value
Type | Description |
---|---|
If true, the predicate is true for one or more elements in the Set. Otherwise, false. |
Examples
// `toSet()` converts an Array to a Set.
let set = [1, 2, 3].toSet()
set.any(v => v == 2)
true
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!