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

value ** power.

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