geostorm.org


UTC 07:40:33
Wednesday
3/12/2025



March 2025
SuMoTuWeThFrSa 
      1 
2345678 
9101112131415 
16171819202122 
23242526272829 
3031      
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