| 2706 | bool Value::isDouble() const { return type_ == realValue || isIntegral(); } |
| 2707 | |
| 2708 | bool Value::isNumeric() const { return isIntegral() || isDouble(); } |
| 2709 | |
| 2710 | bool Value::isString() const { return type_ == stringValue; } |
| 2711 |
no outgoing calls
no test coverage detected