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