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

Subtracts one Float value from another.

Parameters
ParameterDescription
aLeft operand.
bRight operand.
Returns

a-b.

Example
assert Float(10.0) - Float(3.0) == Float(7.0)