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

Subtracts b from a in place.

Parameters
ParameterDescription
aMutable target value.
bValue to subtract.
Example
value = 5.5
value -= 2.0
assert value == 3.5