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

Subtracts b from a in place.

Parameters
  • a Mutable target value.
  • b Value to subtract.
Example
value = Long(10)
value -= Long(3)
assert value == Long(7)