| 288 | #endif |
| 289 | template <class... Args> |
| 290 | std::pair<iterator, bool> emplace_ks(const CharT* key, size_type key_size, |
| 291 | Args&&... args) { |
| 292 | return m_ht.emplace(key, key_size, std::forward<Args>(args)...); |
| 293 | } |
| 294 | |
| 295 | /** |
| 296 | * Erase has an amortized O(1) runtime complexity, but even if it removes the |