| 113 | bool IsLast() const { return index_ == num_entries_ - 1; } |
| 114 | |
| 115 | void Advance() { |
| 116 | DCHECK(!Done()); |
| 117 | index_++; |
| 118 | } |
| 119 | |
| 120 | int32_t CurrentKey() const { |
| 121 | return table_.IsSparse() ? table_.GetEntryAt(index_) : table_.GetEntryAt(0) + index_; |
nothing calls this directly
no outgoing calls
no test coverage detected