Operations
Mathematical operations
The common basic math ops are available, including order of operation.
Infix
Math
+ // addition
- // subtraction
* // multiplication
/ // division
% // modulo (remainder)
Bitwise
| // bitwise OR
& // bitwise AND
^ // bitwise XOR
Boolean
Comparison
== // Equality
!= // Inequality
> // Greater
>= // Greater than or equals
< // Lower
<= // Lower than or equals
Composition
|| // boolean OR
&& // boolean AND
Prefix
! // boolean negation
- // numeric negation
& // reference / address of
* // dereference