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

Computes the remainder of one ULong value divided by another.

Parameters
ParameterDescription
aDividend.
bDivisor.
Returns

a%b.

Throws
  • ZeroDivisionError if the divisor equals ULong(0) at runtime.
Example
assert ULong(10) % ULong(3) == ULong(1)