* @copydoc emplace_ks(const CharT* key, size_type key_size) */
| 214 | * @copydoc emplace_ks(const CharT* key, size_type key_size) |
| 215 | */ |
| 216 | std::pair<iterator, bool> emplace(const std::basic_string_view<CharT>& key) { |
| 217 | return m_ht.emplace(key.data(), key.size()); |
| 218 | } |
| 219 | #else |
| 220 | /** |
| 221 | * @copydoc emplace_ks(const CharT* key, size_type key_size) |