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

Subtracts b from a in place.

Parameters
ParameterDescription
aMutable target value.
bValue to subtract.
Example
value = UInt(10)
value -= UInt(3)
assert value == 7u