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

Performs integer division on two UInt values.

Parameters
ParameterDescription
aDividend.
bDivisor.
Returns

The result as a UInt.

Throws
  • ZeroDivisionError if the divisor equals UInt(0) at runtime.
Example
assert UInt(10) // UInt(3) == 3u