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

Adds b to a in place.

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