| 122 | } |
| 123 | |
| 124 | Iterator* Table::NewIterator() const { |
| 125 | return NewTwoLevelIterator(rep_->index_block->NewIterator(), |
| 126 | &Table::BlockReader, const_cast<Table*>(this)); |
| 127 | } |
| 128 | |
| 129 | Status Table::InternalGet(const StringPiece& k, void* arg, |
| 130 | void (*saver)(void*, const StringPiece&, |