| 22 | #include "vectorvalue.h" |
| 23 | |
| 24 | IsVecFunction::IsVecFunction(int s) : |
| 25 | Function(QString("is_vec%1").arg(s)), |
| 26 | size(s) |
| 27 | { |
| 28 | addDescription(tr("Returns true when the given value is a %1 vector.").arg(s)); |
| 29 | addParameter("value"); |
| 30 | } |
| 31 | |
| 32 | Value& IsVecFunction::evaluate(const Context& ctx) const |
| 33 | { |
nothing calls this directly
no outgoing calls
no test coverage detected