| 1148 | } |
| 1149 | |
| 1150 | bool Value::isValidIndex(ArrayIndex index) const { return index < size(); } |
| 1151 | |
| 1152 | Value const* Value::find(char const* begin, char const* end) const { |
| 1153 | JSON_ASSERT_MESSAGE(type_ == nullValue || type_ == objectValue, |
no test coverage detected