| 16582 | } |
| 16583 | |
| 16584 | size_type count(const Key& key) const |
| 16585 | { |
| 16586 | for (auto it = this->begin(); it != this->end(); ++it) |
| 16587 | { |
| 16588 | if (it->first == key) |
| 16589 | { |
| 16590 | return 1; |
| 16591 | } |
| 16592 | } |
| 16593 | return 0; |
| 16594 | } |
| 16595 | |
| 16596 | iterator find(const Key& key) |
| 16597 | { |
no test coverage detected