public native static operator-=( readonly a as Short, readonly b as Short ) as Void
Subtracts b from a in place.
b
a
value = Short(10) value -= Short(3) assert value == Short(7)