| 21 | #include "rmath.h" |
| 22 | |
| 23 | CbrtFunction::CbrtFunction() : Function("cbrt") |
| 24 | { |
| 25 | addDescription(tr("Returns the cube root of the number value.")); |
| 26 | addParameter("number"); |
| 27 | } |
| 28 | |
| 29 | Value& CbrtFunction::evaluate(const Context& ctx) const |
| 30 | { |
nothing calls this directly
no outgoing calls
no test coverage detected