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

Divides one Float value by another.

Parameters
  • a Dividend.
  • b Divisor.
Returns

a/b.

Throws
  • ZeroDivisionError if the divisor equals `Float(0.0)` at runtime.
Example
assert Float(12.0) / Float(3.0) == Float(4.0)