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

Multiplies a by b in place.

Parameters
  • a Mutable target value.
  • b Multiplier.
Example
value = UInt(10)
value *= UInt(3)
assert value == 30u