| 263 | #endif |
| 264 | template <class M> |
| 265 | std::pair<iterator, bool> insert_or_assign_ks(const CharT* key, |
| 266 | size_type key_size, M&& obj) { |
| 267 | return m_ht.insert_or_assign(key, key_size, std::forward<M>(obj)); |
| 268 | } |
| 269 | |
| 270 | #ifdef TSL_AH_HAS_STRING_VIEW |
| 271 | template <class... Args> |
nothing calls this directly
no test coverage detected