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

Subtracts b from a in place.

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