| 185 | } |
| 186 | #endif |
| 187 | std::pair<iterator, bool> insert_ks(const CharT* key, size_type key_size, |
| 188 | const T& value) { |
| 189 | return m_ht.emplace(key, key_size, value); |
| 190 | } |
| 191 | |
| 192 | #ifdef TSL_AH_HAS_STRING_VIEW |
| 193 | std::pair<iterator, bool> insert(const std::basic_string_view<CharT>& key, |