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

value ** power.

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