| 3516 | } |
| 3517 | |
| 3518 | bool Value::isValidIndex(ArrayIndex index) const { return index < size(); } |
| 3519 | |
| 3520 | Value const* Value::find(char const* begin, char const* end) const { |
| 3521 | JSON_ASSERT_MESSAGE(type() == nullValue || type() == objectValue, |
no test coverage detected