infix .
Documentation for infix .
assembled from the following types:
language documentation Operators
From Operators
(Operators) infix .
Calls the following method (whose name must be alphabetic) on the left-side invocant.
Note that the infix form of the operator has a slightly lower precedence than postfix .meth
.
say -5.abs; # like: -(5.abs)# OUTPUT: «-5»say -5 . abs; # like: (-5) . abs# OUTPUT: «5»say -5 .abs; # following whitespace is optional# OUTPUT: «5»