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

Subtracts b from a in place.

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