| 2738 | bool Value::isNumeric() const { return isIntegral() || isDouble(); } |
| 2739 | |
| 2740 | bool Value::isString() const { return type_ == stringValue; } |
| 2741 | |
| 2742 | bool Value::isArray() const { return type_ == arrayValue; } |
| 2743 |
nothing calls this directly
no outgoing calls
no test coverage detected