| 496 | } |
| 497 | #endif |
| 498 | std::pair<iterator, iterator> equal_range_ks(const CharT* key, |
| 499 | size_type key_size) { |
| 500 | return m_ht.equal_range(key, key_size); |
| 501 | } |
| 502 | |
| 503 | std::pair<const_iterator, const_iterator> equal_range_ks( |
| 504 | const CharT* key, size_type key_size) const { |
nothing calls this directly
no test coverage detected