15.4 Operators
All of the above operators have an associated assignment operator, e.g., .=
All Perl functions can be used as list operators, in which case they have either very high or very low precedence, depending on whether you look at the left or the right side of the operator. Only the operators not, and, or, and xor have lower precedence. A "list" is a list of expressions, variables, or lists. An array variable or an array slice may always be used instead of a list. Parentheses can be added around the parameter lists to avoid precedence problems. |
|