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