| 594 | } |
| 595 | |
| 596 | void clear() { |
| 597 | _buckets.assign(_buckets.size(), Entry{}); |
| 598 | _occupied.reset(); |
| 599 | _deleted.reset(); |
| 600 | _size = _tombstones = 0; |
| 601 | } |
| 602 | |
| 603 | // swap() - swap contents with another unordered_map |
| 604 | void swap(unordered_map& other) { |
no test coverage detected