Algorithm.&&
Returns the logical "and" of two conditions. If the first condition is FALSE, the second condition will not be evaluated.
Arguments
condition0
is the first condition for logical "and".The
callable
provides the second condition for logical "and", and is only evaluated if condition0
is TRUE. The stack notation is:( -- condition )
Return values
condition1
is TRUE if both condition0
and callable
evaluation result are TRUE, FALSE otherwise.
Complexity
Constant
Example
Output:
FALSE