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
  • value Base value.
  • power Exponent.
Returns

value ** power.

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