#pragma once #include #include template struct ClearableHashMapCell : public ClearableHashTableCell> { using Base = ClearableHashTableCell>; using Base::Base; ClearableHashMapCell(const typename Base::value_type & value_, const typename Base::State & state) : Base::BaseCell(value_, state), Base::version(state.version) {} }; template < typename Key, typename Mapped, typename Hash = DefaultHash, typename Grower = HashTableGrower<>, typename Allocator = HashTableAllocator > class ClearableHashMap : public HashTable, Hash, Grower, Allocator> { public: Mapped & operator[](const Key & x) { typename ClearableHashMap::LookupResult it; bool inserted; this->emplace(x, it, inserted); if (inserted) new (&it->getMapped()) Mapped(); return it->getMapped(); } void clear() { ++this->version; this->m_size = 0; } };