| 20 | #include "context.h" |
| 21 | |
| 22 | MaxFunction::MaxFunction() : Function("max") |
| 23 | { |
| 24 | addDescription(tr("Returns the largest of the given values.")); |
| 25 | addParameter("values"); |
| 26 | } |
| 27 | |
| 28 | Value& MaxFunction::evaluate(const Context& ctx) const |
| 29 | { |
nothing calls this directly
no outgoing calls
no test coverage detected