| 3589 | } |
| 3590 | |
| 3591 | bool Value::isValidIndex(ArrayIndex index) const { return index < size(); } |
| 3592 | |
| 3593 | Value const* Value::find(char const* key, char const* cend) const { |
| 3594 | JSON_ASSERT_MESSAGE(type_ == nullValue || type_ == objectValue, |
no test coverage detected