←
And
→
Equivalent
/
Reference of Built-in Symbols
/
Testing Expressions
/
Logical Combinations
/
AnyTrue
/
AnyTrue
WMA link
AnyTrue
[{$expr_1$, $expr_2$, ...},
test
]
returns True if any application of
test
to $expr_1$, $expr_2$, ... evaluates to True.
AnyTrue
[
list
,
test
,
level
]
returns True if any application of
test
to items of
list
at
level
evaluates to True.
AnyTrue
[
test
]
gives an operator that may be applied to expressions.
AnyTrue[{1, 3, 5}, EvenQ]
AnyTrue[{1, 4, 5}, EvenQ]
←
And
→
Equivalent