| 3576 | } |
| 3577 | |
| 3578 | bool Value::insert(ArrayIndex index, const Value& newValue) { |
| 3579 | return insert(index, Value(newValue)); |
| 3580 | } |
| 3581 | |
| 3582 | bool Value::insert(ArrayIndex index, Value&& newValue) { |
| 3583 | JSON_ASSERT_MESSAGE(type() == nullValue || type() == arrayValue, |
no test coverage detected