@brief updates a JSON object from another object, overwriting existing keys @sa https://json.nlohmann.me/api/basic_json/update/
| 22620 | /// @brief updates a JSON object from another object, overwriting existing keys |
| 22621 | /// @sa https://json.nlohmann.me/api/basic_json/update/ |
| 22622 | void update(const_reference j, bool merge_objects = false) |
| 22623 | { |
| 22624 | update(j.begin(), j.end(), merge_objects); |
| 22625 | } |
| 22626 | |
| 22627 | /// @brief updates a JSON object from another object, overwriting existing keys |
| 22628 | /// @sa https://json.nlohmann.me/api/basic_json/update/ |
no test coverage detected