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
ParameterDescription
valueBase value.
powerExponent.
Returns

value ** power.

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