klyn.ULong.operator%=
method
public native static operator%=( readonly a as ULong, readonly b as ULong ) as Void
Description

Replaces a with the remainder of a divided by b.

Parameters
ParameterDescription
aMutable target value.
bDivisor.
Throws
  • ZeroDivisionError if the divisor equals ULong(0) at runtime.
Example
value = ULong(10)
value %= ULong(3)
assert value == ULong(1)