Operators | Operation |
---|---|
+ | Addition |
- | Subtraction |
* | Multiplication |
Mod | Remainder |
/ | Division |
Div | Integer Division |
Operators | Operation |
---|---|
or | Logical or |
xor | Logical xor |
and | Logical and |
not | Logical negation |
Operators | Operation |
---|---|
or | Bitwise or |
xor | Bitwise xor |
and | Bitwise and |
not | Bitwise negation |
<< | Bitwise shift to the left |
>> | Bitwise shift to the right |
Operators | Operation |
---|---|
= | Equal |
< | Stricty less than |
> | Stricty greater than |
Not equal | |
<= | Less than or equal |
>= | Greater than or equal |
in | Elements of |
Operators | Operation |
---|---|
* | Intersection |
+ | Union |
- | Difference |
<= | Contains |
in | To check an element is in a set or not |
include | To include an element. |
exclude | To exclude an element |
in
is the set operator that is used check whether an element is existed or not.