1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
### jsoncons::basic_json::merge
```cpp
void merge(const basic_json& source); (1)
void merge(basic_json&& source); (2)
void merge(object_iterator hint, const basic_json& source); (3)
void merge(object_iterator hint, basic_json&& source); (4)
```
Copies the key-value pairs in source json object into json object. If there is a member in source json object with key equivalent to the key of a member in json object,
then that member is not copied.
The `merge` function performs only a one-level-deep shallow merge, not a deep merge of nested objects.
#### Parameters
<table>
<tr>
<td><code>source</code></td>
<td>`json` object value</td>
</tr>
</table>
#### Return value
None
#### Exceptions
Throws `std::domain_error` if source or *this are not json objects.
### Examples
#### Merge `json`
```cpp
json j = json::parse(R"(
{
"a" : 1,
"b" : 2
}
)");
const json source = json::parse(R"(
{
"a" : 2,
"c" : 3
}
)");
j1.merge(source);
std::cout << j << endl;
```
Output:
```json
{"a":1,"b":2,"c":3}
```
|