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

Divides one Long value by another.

Parameters
ParameterDescription
aDividend.
bDivisor.
Returns

The real quotient as a Double.

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