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

Adds b to a in place.

Parameters
ParameterDescription
aMutable target value.
bValue to add.
Example
value = Byte(10)
value += Byte(3)
assert value == Byte(13)