Lookup
| 391 | |
| 392 | // Lookup |
| 393 | fl::size count(const Key& key) const { |
| 394 | auto range = equal_range(key); |
| 395 | fl::size count = 0; |
| 396 | for (auto it = range.first; it != range.second; ++it) { |
| 397 | ++count; |
| 398 | } |
| 399 | return count; |
| 400 | } |
| 401 | |
| 402 | iterator find(const Key& key) { |
| 403 | ValueWithId search_key(value_type(key, Value()), 0); |
nothing calls this directly
no test coverage detected