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