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

Performs integer division on two ULong values.

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(3)