And
Use
The And() function checks if all given boolean values are true.
If all inputs to And() are true, then it returns true. If any inputs are false, then it returns false.
Examples
And(true, false) = falseAnd(true, true) = trueAnd(true, false, true) = falseAnd(1 > 0, 1 < 2) = trueAnd(2*2 == 4, 2*2 < 0) = false
| Function |
And(conditions...)
And(functions...)
|
And is included by default in each file as part of the Logic library.
See also: