| 335 | |
| 336 | template <typename H> |
| 337 | void |
| 338 | IntrusiveHashMap<H>::Bucket::clear() { |
| 339 | _v = nullptr; |
| 340 | _count = 0; |
| 341 | _mixed_p = false; |
| 342 | // Need to clear these, or they persist after an expansion which breaks the active bucket list. |
| 343 | _link._next = _link._prev = nullptr; |
| 344 | } |
| 345 | |
| 346 | template <typename H> |
| 347 | bool |