Values
None
The property will be assigned regularly.
Add
The value will be added to the property. Equivalent of doing +=.
Sub
The value will be subtracted from the property. Equivalent of doing -=.
Mul
The property will be multiplied by the value. Equivalent of doing *=.
Div
The property will be divided by the value. Equivalent of doing /=.
Mod
A modulo operation will be performed on the property and the value. Equivalent of doing %=.
ShiftLeft
The property will be binarly shifted to the left by the given value. Equivalent of doing <<.
ShiftRight
The property will be binarly shifted to the right by the given value. Equivalent of doing >>.
BitAnd
A binary AND operation will be performed on the property. Equivalent of doing &=.
BitOr
A binary OR operation will be performed on the property. Equivalent of doing ` | =`. |
|---|
BitXor
A binary XOR operation will be performed on the property. Equivalent of doing ^=.