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

Computes the remainder of one Long value divided by another.

Parameters
  • a Dividend.
  • b Divisor.
Returns

a%b.

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