Note: information on this page refers to Ceylon 1.1, not to the current release.
.
(member) operator
The left-associative, binary infix .
operator is used to access the member
named by the right-hand operand from left-hand operand.
Usage
String[] args = process.arguments;
Description
Members include attributes, methods, classes and interfaces.
Definition
The .
operator is primitive.
Polymorphism
The .
operator is not polymorphic.
Type
The result type of the .
operator is the type of its right hand operand.
See also
- operator precedence in the language specification