@brief updates a JSON object from another object, overwriting existing keys @sa https://json.nlohmann.me/api/basic_json/update/
| 3142 | /// @brief updates a JSON object from another object, overwriting existing keys |
| 3143 | /// @sa https://json.nlohmann.me/api/basic_json/update/ |
| 3144 | void update(const_reference j, bool merge_objects = false) |
| 3145 | { |
| 3146 | update(j.begin(), j.end(), merge_objects); |
| 3147 | } |
| 3148 | |
| 3149 | /// @brief updates a JSON object from another object, overwriting existing keys |
| 3150 | /// @sa https://json.nlohmann.me/api/basic_json/update/ |
no test coverage detected