| 449 | |
| 450 | template <typename H> |
| 451 | auto |
| 452 | IntrusiveHashMap<H>::equal_range(key_type key) -> range { |
| 453 | iterator first{this->find(key)}; |
| 454 | iterator last{first}; |
| 455 | iterator limit{this->end()}; |
| 456 | |
| 457 | while (last != limit && H::equal(key, H::key_of(&*last))) { |
| 458 | ++last; |
| 459 | } |
| 460 | |
| 461 | return range{first, last}; |
| 462 | } |
| 463 | |
| 464 | template <typename H> |
| 465 | auto |
no test coverage detected