| 328 | // a search loop on an empty bucket because that will start with a nullptr candidate, matching the limit. |
| 329 | template <typename H> |
| 330 | auto |
| 331 | IntrusiveHashMap<H>::Bucket::limit() const -> value_type * { |
| 332 | Bucket *n{_link._next}; |
| 333 | return n ? n->_v : nullptr; |
| 334 | }; |
| 335 | |
| 336 | template <typename H> |
| 337 | void |