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

Subtracts b from a in place.

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