sets the next in the hash chain to the passed in value.
| 209 | using PtrCompressor = typename T::PtrCompressor; |
| 210 | // sets the next in the hash chain to the passed in value. |
| 211 | void setHashNext(T* n, const PtrCompressor& compressor) noexcept { |
| 212 | next_ = compressor.compress(n); |
| 213 | } |
| 214 | |
| 215 | void setHashNext(CompressedPtrType n) noexcept { next_ = n; } |
| 216 |