public native static operator%=( readonly a as Float, readonly b as Float ) as Void
Replaces a with the remainder of a divided by b.
| Parameter | Description |
|---|---|
a | Mutable target value. |
b | Divisor. |
value = Float(10.0) value %= Float(3.0) assert value == Float(1.0)