| 171 | |
| 172 | #ifdef TSL_AH_HAS_STRING_VIEW |
| 173 | std::pair<iterator, bool> insert(const std::basic_string_view<CharT>& key, |
| 174 | const T& value) { |
| 175 | return m_ht.emplace(key.data(), key.size(), value); |
| 176 | } |
| 177 | #else |
| 178 | std::pair<iterator, bool> insert(const CharT* key, const T& value) { |
| 179 | return m_ht.emplace(key, std::char_traits<CharT>::length(key), value); |