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

Raises a Long value to a power.

Parameters
  • value Base value.
  • power Exponent.
Returns

value ** power.

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