66 template <
typename V = T>
79 auto element_it = std::prev(
elements_.end());
98 template <
typename V = T>
103 LOG_TRACE(
"Adding nested element {} at path '{}{}'", p->name(),
113 auto *nested_trait_ptr =
115 if (nested_trait_ptr !=
nullptr) {
116 p->set_parent_element_id(parent.value().id());
117 return (*nested_trait_ptr)
118 .template add_element<V>(std::move(p));
124 throw std::runtime_error(
165 template <
typename V = T>
178 if (it == matches_end)
181 auto element_it = it->second;
184 if (
auto element_ptr =
dynamic_cast<V *
>(element_it->get());
185 element_ptr !=
nullptr) {
189 if (nt_ptr->is_root_ ==
is_root)
207 template <
typename F>
bool all_of(F &&f)
const
211 const auto *package_ptr =
212 dynamic_cast<nested_trait<T, Path> *>(e.get());
214 if (package_ptr != nullptr)
215 return package_ptr->all_of(f);
226 bool is_empty(
bool include_inner_packages =
false)
const
230 if (include_inner_packages)
237 const auto *package_ptr =
238 dynamic_cast<nested_trait<T, Path> *>(e.get());
239 return package_ptr != nullptr && package_ptr->is_empty();
259 std::cout <<
"--- Printing tree:\n";
265 std::cout << std::string(level,
' ');
266 std::cout <<
"[" << *e <<
"]\n";
271 std::cout << std::string(level,
' ');
272 std::cout <<
"- " << *e <<
"]\n";
279 std::unique_ptr<V> result;
286 ->get_and_remove<V>(
id);
295 auto element_it = id_it->second;
298 auto name = (*element_it)->name();
300 for (
auto it = name_range.first; it != name_range.second; ++it) {
301 if (it->second == element_it) {
309 result = util::unique_pointer_cast<V>(std::move(*element_it));
321 void remove(
const std::set<eid_t> &element_ids)
323 for (
const auto id : element_ids) {