1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-28 12:02:00 +03:00

add patch_inplace function (#3581)

* add patch_inplace function to json class

* add documentation

* fix up docs
This commit is contained in:
Wolf Vollprecht
2022-07-21 16:27:59 +02:00
committed by GitHub
parent 4b6d3638ca
commit 09fb4819ff
6 changed files with 131 additions and 12 deletions

View File

@ -0,0 +1,13 @@
Before
{
"baz": "qux",
"foo": "bar"
}
After
{
"baz": "boo",
"hello": [
"world"
]
}