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

Divides one UInt value by another.

Parameters
  • a Dividend.
  • b Divisor.
Returns

The real quotient as a Double.

Throws
  • ZeroDivisionError if the divisor equals `UInt(0)` at runtime.
Example
assert UInt(9) / UInt(2) == 4.5