fusionplant.com


UTC 21:02:34
Thursday
4/3/2025



April 2025
SuMoTuWeThFrSa 
  12345 
6789101112 
13141516171819 
20212223242526 
27282930    
        
Calendar Tool

welcome

Precedence of Operators



Precedence of Operators

Parentheses and arguments to list operators
->
++ -- (autoincrement and autodecrement)
**
\ ! ~ + - (unary operators)
=~ !~
* / % x
+ - . (binary operators)
<< >>
named unary operators (-X filetests, rand)
< <= > >= lt le gt ge (the "unequal" ones)
== != <=> eq ne cmp (the "equal" ones)
&
|^
&&
||
.. ...
?: (ternary)
= += -= .= (and similar assignment operators)
, =>
list operators (rightward)
not
and
or xor