| Class | Description |
|---|---|
| ADD |
Adds the two operands on top of the stack
|
| BitwiseAND |
Bitwise AND of the two operands on top of the stack
|
| BitwiseOperation | |
| BitwiseOR |
Bitwise OR of the two operands on top of the stack
|
| BitwiseXOR |
Bitwise XOR of the two operands on top of the stack
|
| ComparisonOperation | |
| CondAND |
Conditional AND taking either:
- two operands on top of the stack.
|
| CondOR |
Conditional OR taking either:
- two operands on top of the stack.
|
| CondShortCircuit |
Conditional boolean operation taking either:
- two operands on top of the stack.
|
| DIV |
Divide the two operands on top of the stack
|
| EQ |
Checks the two operands on top of the stack for equality
|
| GE |
Checks the two operands on top of the stack for greater or equal
|
| GT |
Checks the two operands on top of the stack for greater than
|
| INPLACEADD |
Adds the two operands on top of the stack but operates on lists and sets.
|
| LE |
Checks the two operands on top of the stack for less or equal
|
| LT |
Checks the two operands on top of the stack for less than
|
| MOD |
Compute the modulo of the two operands on top of the stack
|
| MUL |
Multiply the two operands on top of the stack
|
| NE |
Checks the two operands on top of the stack for inequality
|
| SHIFTLEFT |
Shift left the long below the top of the stack by the number of bits on top of the stack
|
| SHIFTRIGHT |
Shift right the long below the top of the stack by the number of bits on top of the stack
|
| SUB |
Subtracts the two operands on top of the stack
|