Name _||_
Definition (a:val(bool)) || (b:expr(bool)) : expr(bool)
Example (a>3) || (a<10)
Defined in ops.l
Implementation icode
Infix _||_ : infix(100,left).
Description Shortcircuiting logical OR function. If the first operand is true the second is not evaluated.
See Also or is bitwise OR operation on integers.