| 80 | } |
| 81 | |
| 82 | void InMemoryIterator::LoadItem() { |
| 83 | key_ = cur_it_->first; |
| 84 | value_ = cur_it_->second.at(pos_); |
| 85 | } |
| 86 | |
| 87 | void InMemoryIterator::SeekKey(const std::string &key) { |
| 88 | bool found = false; |
nothing calls this directly
no outgoing calls
no test coverage detected