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

Divides one ULong value by another.

Parameters
  • a Dividend.
  • b Divisor.
Returns

The real quotient as a Double.

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