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

Adds b to a in place.

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