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

Raises an Int value to a power.

Parameters
  • value Base value.
  • power Exponent.
Returns

value ** power.

Example
assert 2 ** 3u == 8