public native static operator%=( readonly a as Short, readonly b as Short ) as Void
Replaces a with the remainder of a divided by b.
| Parameter | Description |
|---|---|
a | Mutable target value. |
b | Divisor. |
value = Short(10) value %= Short(3) assert value == Short(1)