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

Replaces value with value ** power.

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