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

Divides one UShort value by another.

Parameters
  • a Dividend.
  • b Divisor.
Returns

The real quotient as a Double.

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