geostorm.org


UTC 23:55:30
Thursday
3/28/2024



March 2024
SuMoTuWeThFrSa 
     12 
3456789 
10111213141516 
17181920212223 
24252627282930 
31       
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