C-style Logical And Binary "&&" performs a short-circuit logical AND operation.
Bitwise Or and Exclusive Or Binary "|" returns its operands ORed together bit by bit.
Constant Folding Like C, Perl does a certain amount of expression evaluation at compile time whenever it determines that all arguments to an
The Arrow Operator "-> " is an infix dereference operator, just as it is in C and C++. If the right side is
Auto-increment and Auto-decrement "++" and "--"
C-style Logical Or Binary "||" performs a short-circuit logical OR operation. That is, if
Symbolic Unary Operators Unary "!" performs logical negation, that is, "not". See also
Logical And Binary "and" returns the logical conjunction of the two surrounding expressions
Operator Precedence and Associativity Operator precedence and associativity work in Perl more or less like they do in mathematics.
Page 4 of 4