klyn.UShort.operator**=
method
public native static operator**=( readonly value as UShort, readonly power as UInt ) as Void
Description

Replaces value with value ** power.

Parameters
  • value Base value.
  • power Exponent.
Example
value = UShort(2)
value **= 3u
assert value == UShort(8)