| 798 | */ |
| 799 | float load_factor() const { return m_ht.load_factor(); } |
| 800 | float max_load_factor() const { return m_ht.max_load_factor(); } |
| 801 | void max_load_factor(float ml) { m_ht.max_load_factor(ml); } |
| 802 | |
| 803 | void rehash(size_type count) { m_ht.rehash(count); } |
nothing calls this directly
no outgoing calls
no test coverage detected