Name _&&_
Definition (a:val(bool)) && (b:expr(bool)) : expr(bool)
Example a>3 && a<10
Defined in ops.l
Implementation icode
Infix _&&_ : infix(110,left).
Description Shortcircuiting boolean AND function: if first parameter is false, second is not evaluated.
See Also and is bitwise AND operation on integers.