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

Adds b to a in place.

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