| 271 | |
| 272 | template <class M> |
| 273 | std::pair<iterator, bool> insert_or_assign(const key_type& k, M&& obj) { |
| 274 | return m_ht.insert_or_assign(k, std::forward<M>(obj)); |
| 275 | } |
| 276 | |
| 277 | template <class M> |
| 278 | std::pair<iterator, bool> insert_or_assign(key_type&& k, M&& obj) { |
no outgoing calls