→
And
/
Reference of Built-in Symbols
/
Testing Expressions
/
Logical Combinations
/
AllTrue
/
AllTrue
WMA link
AllTrue
[{$expr_1$, $expr_2$, ...},
test
]
returns True if all applications of
test
to $expr_1$, $expr_2$, ... evaluate to True.
AllTrue
[
list
,
test
,
level
]
returns True if all applications of
test
to items of
list
at
level
evaluate to True.
AllTrue
[
test
]
gives an operator that may be applied to expressions.
AllTrue[{2, 4, 6}, EvenQ]
AllTrue[{2, 4, 7}, EvenQ]
→
And