| 1138 | } |
| 1139 | |
| 1140 | bool Value::insert(ArrayIndex index, const Value& newValue) { |
| 1141 | return insert(index, Value(newValue)); |
| 1142 | } |
| 1143 | |
| 1144 | bool Value::insert(ArrayIndex index, Value&& newValue) { |
| 1145 | JSON_ASSERT_MESSAGE(type() == nullValue || type() == arrayValue, |