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

Raises a UShort value to a power.

Parameters
  • value Base value.
  • power Exponent.
Returns

value ** power.

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