count() - returns 0 or 1 (unordered_map has unique keys)
| 654 | |
| 655 | // count() - returns 0 or 1 (unordered_map has unique keys) |
| 656 | fl::size count(const Key &key) const { |
| 657 | return contains(key) ? 1 : 0; |
| 658 | } |
| 659 | |
| 660 | // equal_range() - returns pair of iterators [it, it+1) or [end, end) |
| 661 | pair<iterator, iterator> equal_range(const Key &key) { |
no test coverage detected