public native static operator%=( readonly a as UInt, readonly b as UInt ) as Void
Replaces a with the remainder of a divided by b.
a
b
value = UInt(10) value %= UInt(3) assert value == 1u