| 488 | T& operator[](Key&& key) { return m_ht[std::move(key)]; } |
| 489 | |
| 490 | size_type count(const Key& key) const { return m_ht.count(key); } |
| 491 | |
| 492 | /** |
| 493 | * Use the hash value 'precalculated_hash' instead of hashing the key. The |
nothing calls this directly
no outgoing calls
no test coverage detected