|
Logical Methods >>-logical_operator(argument)---------------------------------->< Note For NOT (prefix \), omit the parentheses and [argument] . Returns The [logical_operator] can be: | |
| & & method method& | AND (Returns 1 if both terms are true.) |
| | | method method| | Inclusive OR (Returns 1 if either term or both terms are true.) |
| && && method method&& | Exclusive OR (Returns 1 if either term, but not both terms, is true.) |
| Prefix \ method\ | Logical NOT (Negates; 1 becomes 0, and 0 becomes 1.) |