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

Raises a SByte value to a power.

Parameters
  • value Base value.
  • power Exponent.
Returns

value ** power.

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