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