Note: information on this page refers to Ceylon 1.2, not to the current release.
+
(unary plus) operator
The right-associative, unary prefix +
operator is used to clarify the positive value
of its operand.
Usage
Integer one = +1;
Description
Note that +
does not change the sign of a negative number:
Integer minusOne = +(-1);
Definition
The +
operator is a no-op.
See the language specification for more details.
Type
The result type of the +
operator is the same as the Invertible
type of its operand.
See also
-
-
(unary minus) which does change the sign of its operand - API documentation for
Invertible
- arithmetic operators in the language specification
- operator precedence in the language specification
- Operator polymorphism and Numeric operator semantics in the Tour of Ceylon