| 58 | } |
| 59 | |
| 60 | [[nodiscard]] std::set<std::shared_ptr<Entry>> entrySet() const { |
| 61 | std::set<std::shared_ptr<Entry>> copy = std::set<std::shared_ptr<Entry>>(); |
| 62 | for (const auto &entry: backend) { |
| 63 | copy.emplace(entry.second); |
| 64 | } |
| 65 | return copy; |
| 66 | } |
| 67 | |
| 68 | [[nodiscard]] size_t size() const { |
| 69 | return backend.size(); |