| 561 | |
| 562 | #ifdef TSL_AH_HAS_STRING_VIEW |
| 563 | iterator find(const std::basic_string_view<CharT>& key) { |
| 564 | return m_ht.find(key.data(), key.size()); |
| 565 | } |
| 566 | |
| 567 | const_iterator find(const std::basic_string_view<CharT>& key) const { |
| 568 | return m_ht.find(key.data(), key.size()); |