| 740 | } |
| 741 | |
| 742 | bool Value::isNumber() const noexcept { |
| 743 | return _type == ValueType::Int || _type == ValueType::Double || _type == ValueType::Long || |
| 744 | _type == ValueType::Bool; |
| 745 | } |
| 746 | |
| 747 | bool Value::isNull() const noexcept { |
| 748 | return _type == ValueType::Null; |
no outgoing calls
no test coverage detected