Description
Description | Operators | Operation |
|---|---|
| + | Addition |
| - | Subtraction |
| * | Multiplication |
| Mod | Remainder |
| / | Division |
| Div | Integer Division |
Description | Operators | Operation |
|---|---|
| or | Logical or |
| xor | Logical xor |
| and | Logical and |
| not | Logical negation |
Description | Operators | Operation |
|---|---|
| or | Bitwise or |
| xor | Bitwise xor |
| and | Bitwise and |
| not | Bitwise negation |
| << | Bitwise shift to the left |
| >> | Bitwise shift to the right |
Description | Operators | Operation |
|---|---|
| = | Equal |
| < | Stricty less than |
| > | Stricty greater than |
| Not equal | |
| <= | Less than or equal |
| >= | Greater than or equal |
| in | Elements of |
Description | 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 |
Key Points in is the set operator that is used check whether an element is existed or not.