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

Subtracts b from a in place.

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