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

Raises a Short value to a power.

Parameters
  • value Base value.
  • power Exponent.
Returns

value ** power.

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