Lines Matching refs:update
752 // capacity has changed: update all parents
2074 // capacity has changed: update all parents
3399 /// @sa https://json.nlohmann.me/api/basic_json/update/
3400 void update(const_reference j, bool merge_objects = false)
3402 update(j.begin(), j.end(), merge_objects);
3406 /// @sa https://json.nlohmann.me/api/basic_json/update/
3407 void update(const_iterator first, const_iterator last, bool merge_objects = false)
3419 JSON_THROW(type_error::create(312, detail::concat("cannot use update() with ", type_name()), this));
3431 JSON_THROW(type_error::create(312, detail::concat("cannot use update() with ", first.m_object->type_name()), first.m_object));
3441 it2->second.update(it.value(), true);