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

Raises a ULong value to a power.

Parameters
  • value Base value.
  • power Exponent.
Returns

value ** power.

Example
assert ULong(2) ** 3u == ULong(8)