@brief updates a JSON object from another object, overwriting existing keys @sa https://json.nlohmann.me/api/basic_json/update/
| 22576 | /// @brief updates a JSON object from another object, overwriting existing keys |
| 22577 | /// @sa https://json.nlohmann.me/api/basic_json/update/ |
| 22578 | void update(const_reference j, bool merge_objects = false) |
| 22579 | { |
| 22580 | update(j.begin(), j.end(), merge_objects); |
| 22581 | } |
| 22582 | |
| 22583 | /// @brief updates a JSON object from another object, overwriting existing keys |
| 22584 | /// @sa https://json.nlohmann.me/api/basic_json/update/ |