Root(int n, arg)

Creates the n-th root of arg.

For example, to create the 5th root of x:

root = new Root(5, new Variable('x'));

Source

Root(int this.n, arg): super._unary('root', arg);