| 154 | } |
| 155 | |
| 156 | void Clear() { |
| 157 | for (auto& bucket : Buckets) { |
| 158 | if (bucket.first != EmptyMarker) { |
| 159 | SetValue(bucket, EmptyMarker, mapped_type{}); |
| 160 | } |
| 161 | } |
| 162 | NumFilled = 0; |
| 163 | } |
| 164 | |
| 165 | void MakeEmpty(size_type initSize = 0) { |
| 166 | if (!initSize) { |
nothing calls this directly
no test coverage detected