| 278 | } |
| 279 | |
| 280 | size_type count(const Key& key) const FL_NOEXCEPT { |
| 281 | return find_index(key) != npos() ? 1 : 0; |
| 282 | } |
| 283 | |
| 284 | bool contains(const Key& key) const FL_NOEXCEPT { |
| 285 | return find_index(key) != npos(); |
nothing calls this directly
no test coverage detected