Logical And
  • References/Perl/Perl/Operators

Logical And Binary "and" returns the logical conjunction of the two surrounding expressions

2025-01-10 15:47:30
C-style Logical And
  • References/Perl/Perl/Operators

C-style Logical And Binary "&&" performs a short-circuit logical AND operation.

2025-01-10 15:47:30
Bitwise Or and Exclusive Or
  • References/Perl/Perl/Operators

Bitwise Or and Exclusive Or Binary "|" returns its operands ORed together bit by bit.

2025-01-10 15:47:30
Constant Folding
  • References/Perl/Perl/Operators

Constant Folding Like C, Perl does a certain amount of expression evaluation at compile time whenever it determines that all arguments to an

2025-01-10 15:47:30
Auto-increment and Auto-decrement
  • References/Perl/Perl/Operators

Auto-increment and Auto-decrement "++" and "--"

2025-01-10 15:47:30
Binding Operators
  • References/Perl/Perl/Operators

Binding Operators Binary "=~" binds a scalar expression to a pattern match. Certain operations

2025-01-10 15:47:30
Operator Precedence and Associativity
  • References/Perl/Perl/Operators

Operator Precedence and Associativity Operator precedence and associativity work in Perl more or less like they do in mathematics.

2025-01-10 15:47:30
Symbolic Unary Operators
  • References/Perl/Perl/Operators

Symbolic Unary Operators Unary "!" performs logical negation, that is, "not". See also

2025-01-10 15:47:30
The Arrow Operator
  • References/Perl/Perl/Operators

The Arrow Operator "-> " is an infix dereference operator, just as it is in C and C++. If the right side is

2025-01-10 15:47:30