Power constructor

Power(
  1. dynamic x,
  2. dynamic exp
)

Creates a power operation on the given expressions.

For example, to create x^3:

pow = Power('x', 3);

or:

pow = Variable('x') ^ Number(3.0);

Implementation

Power(super.x, super.exp);