Lookup
| 268 | |
| 269 | // Lookup |
| 270 | iterator find(const Key& key) FL_NOEXCEPT { |
| 271 | size_type idx = find_index(key); |
| 272 | return idx != npos() ? iterator(this, idx) : end(); |
| 273 | } |
| 274 | |
| 275 | const_iterator find(const Key& key) const FL_NOEXCEPT { |
| 276 | size_type idx = find_index(key); |
nothing calls this directly
no test coverage detected