| 22 | #include "vectorvalue.h" |
| 23 | |
| 24 | SumFunction::SumFunction() : Function("sum") |
| 25 | { |
| 26 | addDescription(tr("Returns the sum of the given vector of values.")); |
| 27 | addParameter("values"); |
| 28 | } |
| 29 | |
| 30 | Value& SumFunction::evaluate(const Context& ctx) const |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected