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