Quote and Quote-like Operators
  • References/Perl/Perl/Operators

Quote and Quote-like Operators While we usually think of quotes as literal values, in Perl they function as operators, providing various kinds

2025-01-10 15:47:30
C Operators Missing From Perl
  • References/Perl/Perl/Operators

C Operators Missing From Perl Here is what C has that Perl doesn't: unary & Address-of

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

Additive Operators Binary "+" returns the sum of two numbers. Binary

2025-01-10 15:47:30
Floating-point Arithmetic
  • References/Perl/Perl/Operators

Floating-point Arithmetic While use

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

Equality Operators Binary "==" returns true if the left argument is numerically equal to

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

Assignment Operators "=" is the ordinary assignment operator. Assignment

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

Bitwise And Binary "&" returns its operands ANDed together bit by bit. Although no warning

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

Comma Operator Binary "," is the comma operator. In scalar context it evaluates its left

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

Integer Arithmetic By default, Perl assumes that it must do most of its arithmetic in floating point. But by saying

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

Multiplicative Operators Binary "*" multiplies two numbers. Binary

2025-01-10 15:47:30