fusionplant.com


UTC 16:17:28
Tuesday
10/22/2024



October 2024
SuMoTuWeThFrSa 
  12345 
6789101112 
13141516171819 
20212223242526 
2728293031   
        
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