| 208 | iterator begin() noexcept { return m_ht.begin(); } |
| 209 | const_iterator begin() const noexcept { return m_ht.begin(); } |
| 210 | const_iterator cbegin() const noexcept { return m_ht.cbegin(); } |
| 211 | |
| 212 | iterator end() noexcept { return m_ht.end(); } |
| 213 | const_iterator end() const noexcept { return m_ht.end(); } |
nothing calls this directly
no outgoing calls
no test coverage detected