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

Raises a Byte value to a power.

Parameters
ParameterDescription
valueBase value.
powerExponent.
Returns

value ** power.

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