equal_range returns [lower_bound, upper_bound) for the given key
| 423 | |
| 424 | // equal_range returns [lower_bound, upper_bound) for the given key |
| 425 | fl::pair<iterator, iterator> equal_range(const Key& key) { |
| 426 | iterator lower = lower_bound(key); |
| 427 | iterator upper = upper_bound(key); |
| 428 | return fl::pair<iterator, iterator>(lower, upper); |
| 429 | } |
| 430 | |
| 431 | fl::pair<const_iterator, const_iterator> equal_range(const Key& key) const { |
| 432 | const_iterator lower = lower_bound(key); |
nothing calls this directly
no test coverage detected