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

Raises a Float value to a power.

Parameters
  • value Base value.
  • power Exponent.
Returns

value ** power.

Example
assert Float(2.0) ** Float(3.0) == Float(8.0)