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