Note: information on this page refers to Ceylon 1.0, not to the current release.
|| (or) operator
The left-associative, binary infix || operator is used to compute the
logical or of two operands.
Usage
Boolean true_ = true || false;
Description
Definition
The || operator is defined as:
if (lhs) true else rhs
See the language specification for more details.
Polymorphism
The || operator is not polymorphic.
Type
The result type of the || operator is Boolean.
See also
- logical operators in the language specification
- operator precedence in the language specification