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