Mega Code Archive

 
Categories / Perl / Language Basics
 

Operator associativity

Operator                               Associativity  ++, --                                 Not applicable  -, ~, !                                Right-to-left  **                                     Right-to-left  =~, !~                                 Left-to-right  *, /, %, x                             Left-to-right  +, -, .                                Left-to-right  <<, >>                                 Left-to-right  <, <=, >, >=, lt, le, gt, ge           Left-to-right  ==, !=, <=>, eq, ne, cmp               Left-to-right  &                                      Left-to-right  |, ^                                   Left-to-right  &&                                     Left-to-right  ||                                     Left-to-right  ..                                     Left-to-right  ? and :                                Right-to-left  =, +=, -=, *=,                         Right-to-left  ,                                      Left-to-right  not                                    Left-to-right  and                                    Left-to-right  or, xor                                Left-to-right