27double add(
double a,
double b);
70double power(
double base,
int exp);
double root(double base, int n, MathError &err)
Implementation of function root.
double add(double a, double b)
Implementation of function add.
double multiply(double a, double b)
Implementation of function multiply.
double modulo(double a, double b, MathError &err)
Implementation of function modulo.
double divide(double a, double b, MathError &err)
Implementation of function divide.
double subtract(double a, double b)
Implementation of function subtract.
double factorial(int a, MathError &err)
Implementation of function factorial.
double power(double base, int exp)
Implementation of function power.