| 1172 | } |
| 1173 | |
| 1174 | bool Value::isValidIndex(ArrayIndex index) const { |
| 1175 | return index < size(); |
| 1176 | } |
| 1177 | |
| 1178 | Value const* Value::find(char const* begin, char const* end) const { |
| 1179 | JSON_ASSERT_MESSAGE(type() == nullValue || type() == objectValue, |