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

Replaces value with value ** power.

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