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

Adds b to a in place.

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