| 46 | } |
| 47 | |
| 48 | ankerl::unordered_dense::set<CompositeId> ComplexLoader::GetIdsSet() const |
| 49 | { |
| 50 | ankerl::unordered_dense::set<CompositeId> set; |
| 51 | ForEach([&](auto const &, auto const & forest) |
| 52 | { |
| 53 | forest.ForEachTree([&](auto const & tree) |
| 54 | { tree_node::ForEach(tree, [&](auto const & entry) { set.emplace(entry.m_id); }); }); |
| 55 | }); |
| 56 | return set; |
| 57 | } |
| 58 | |
| 59 | ComplexLoader const & GetOrCreateComplexLoader(std::string const & filename) |
| 60 | { |
nothing calls this directly
no test coverage detected