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

Subtracts b from a in place.

Parameters
  • a Mutable target value.
  • b Value to subtract.
Example
value = Float(10.0)
value -= Float(3.0)
assert value == Float(7.0)