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

Subtracts b from a in place.

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