| 1282 | } |
| 1283 | |
| 1284 | bool Value::insert(ArrayIndex index, const Value& newValue) { |
| 1285 | return insert(index, Value(newValue)); |
| 1286 | } |
| 1287 | |
| 1288 | bool Value::insert(ArrayIndex index, Value&& newValue) { |
| 1289 | JSON_ASSERT_MESSAGE(type() == nullValue || type() == arrayValue, "in Json::Value::insert: requires arrayValue"); |
no test coverage detected