| 24 | #include "vectorvalue.h" |
| 25 | |
| 26 | LengthFunction::LengthFunction() : Function("len") |
| 27 | { |
| 28 | addDescription(tr("Returns the length of a range, list or text value.")); |
| 29 | addParameter("value"); |
| 30 | } |
| 31 | |
| 32 | Value& LengthFunction::evaluate(const Context& ctx) const |
| 33 | { |
nothing calls this directly
no outgoing calls
no test coverage detected