@brief updates a JSON object from another object, overwriting existing keys @sa https://json.nlohmann.me/api/basic_json/update/
| 3436 | /// @brief updates a JSON object from another object, overwriting existing keys |
| 3437 | /// @sa https://json.nlohmann.me/api/basic_json/update/ |
| 3438 | void update(const_reference j, bool merge_objects = false) |
| 3439 | { |
| 3440 | update(j.begin(), j.end(), merge_objects); |
| 3441 | } |
| 3442 | |
| 3443 | /// @brief updates a JSON object from another object, overwriting existing keys |
| 3444 | /// @sa https://json.nlohmann.me/api/basic_json/update/ |
no test coverage detected