| 1037 | /// Returns true if this iterator is at the end, i.e. GetRow() cannot be called. |
| 1038 | /// Thread-safe for read-only hash tables. |
| 1039 | bool ALWAYS_INLINE AtEnd() const { return bucket_idx_ == BUCKET_NOT_FOUND; } |
| 1040 | |
| 1041 | /// Prefetch the hash table bucket which the iterator is pointing to now. |
| 1042 | /// Thread-safe for read-only hash tables. |
no outgoing calls