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