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
  • a Dividend.
  • b Divisor.
Returns

a%b.

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