| 150 | iterator begin() noexcept { return m_ht.begin(); } |
| 151 | const_iterator begin() const noexcept { return m_ht.begin(); } |
| 152 | const_iterator cbegin() const noexcept { return m_ht.cbegin(); } |
| 153 | |
| 154 | iterator end() noexcept { return m_ht.end(); } |
| 155 | const_iterator end() const noexcept { return m_ht.end(); } |