| 187 | iterator begin() noexcept { return m_ht.begin(); } |
| 188 | const_iterator begin() const noexcept { return m_ht.begin(); } |
| 189 | const_iterator cbegin() const noexcept { return m_ht.cbegin(); } |
| 190 | |
| 191 | iterator end() noexcept { return m_ht.end(); } |
| 192 | const_iterator end() const noexcept { return m_ht.end(); } |
no outgoing calls