equal_range returns [lower_bound, upper_bound) for the given key
| 313 | |
| 314 | // equal_range returns [lower_bound, upper_bound) for the given key |
| 315 | fl::pair<iterator, iterator> equal_range(const Key& key) { |
| 316 | iterator lower = lower_bound(key); |
| 317 | iterator upper = upper_bound(key); |
| 318 | return fl::pair<iterator, iterator>(lower, upper); |
| 319 | } |
| 320 | |
| 321 | fl::pair<const_iterator, const_iterator> equal_range(const Key& key) const { |
| 322 | const_iterator lower = lower_bound(key); |
nothing calls this directly
no test coverage detected