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