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

Adds b to a in place.

Parameters
  • a Mutable target value.
  • b Value to add.
Example
value = SByte(10)
value += SByte(3)
assert value == SByte(13)