fusionplant.com


UTC 07:42:49
Wednesday
1/22/2025



January 2025
SuMoTuWeThFrSa 
   1234 
567891011 
12131415161718 
19202122232425 
262728293031  
        
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