Operators

From the wonderful RedGuides Wiki

Operators

Numeric Operators
Operator Description
+ Addition
- Subtraction
/ Division
\ Integer Division
* Multiplication
% mod
^ Exponent
& Bitwise AND
| Bitwise OR
~ Bitwise NOT
^^ XOR
<< Bitwise shift left
>> Bitwise shift right
Logical Operators
Operator Description
== Equal to
!= Not equal to
> Greater than
>= Greater than or equal to
< Less than
<= Less than or equal to
&& AND
|| OR
! NOT