| 160 | */ |
| 161 | bool empty() const noexcept { return m_ht.empty(); } |
| 162 | size_type size() const noexcept { return m_ht.size(); } |
| 163 | size_type max_size() const noexcept { return m_ht.max_size(); } |
| 164 | size_type max_key_size() const noexcept { return m_ht.max_key_size(); } |
| 165 | void shrink_to_fit() { m_ht.shrink_to_fit(); } |
no outgoing calls
no test coverage detected