| 697 | } |
| 698 | #endif |
| 699 | std::pair<iterator, iterator> equal_range_ks(const CharT* key, |
| 700 | size_type key_size) { |
| 701 | return m_ht.equal_range(key, key_size); |
| 702 | } |
| 703 | |
| 704 | std::pair<const_iterator, const_iterator> equal_range_ks( |
| 705 | const CharT* key, size_type key_size) const { |
nothing calls this directly
no test coverage detected