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

Divides one Short value by another.

Parameters
ParameterDescription
aDividend.
bDivisor.
Returns

The real quotient as a Double.

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