| 316 | } |
| 317 | |
| 318 | inline void HashTable::Iterator::SetTuple(Tuple* tuple, uint32_t hash) { |
| 319 | DCHECK(!AtEnd()); |
| 320 | DCHECK(table_->stores_tuples()); |
| 321 | table_->PrepareBucketForInsert(bucket_idx_, hash); |
| 322 | table_->buckets_[bucket_idx_].SetTuple<false>(tuple); |
| 323 | } |
| 324 | |
| 325 | inline void HashTable::Iterator::SetMatched() { |
| 326 | DCHECK(!AtEnd()); |