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

Subtracts b from a in place.

Parameters
ParameterDescription
aMutable target value.
bValue to subtract.
Example
value = Long(10)
value -= Long(3)
assert value == Long(7)