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