Name:
&&
boolean AND operator
Library name:
sollya_obj_t sollya_lib_and(sollya_obj_t, sollya_obj_t)
Usage:
expr1 && expr2 : (boolean, boolean) -> boolean
Parameters:
- expr1 and expr2 represent boolean expressions
Description:
- && evaluates to the boolean AND of the two
boolean expressions expr1 and expr2. && evaluates to
true iff both expr1 and expr2 evaluate to true.
Example 1:
> true && false;
false
Example 2:
> (1 == exp(0)) && (0 == log(1));
true
Go back to the list of commands