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
  • a Mutable target value.
  • b Value to subtract.
Example
value = SByte(10)
value -= SByte(3)
assert value == SByte(7)