MCPcopy Create free account
hub / github.com/ElementsProject/elements / NewIterator

Method NewIterator

src/leveldb/table/table.cc:210–214  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

208}
209
210Iterator* Table::NewIterator(const ReadOptions& options) const {
211 return NewTwoLevelIterator(
212 rep_->index_block->NewIterator(rep_->options.comparator),
213 &Table::BlockReader, const_cast<Table*>(this), options);
214}
215
216Status Table::InternalGet(const ReadOptions& options, const Slice& k, void* arg,
217 void (*handle_result)(void*, const Slice&,

Callers 4

ReadMetaMethod · 0.45
BlockReaderMethod · 0.45
InternalGetMethod · 0.45
ApproximateOffsetOfMethod · 0.45

Calls 1

NewTwoLevelIteratorFunction · 0.85

Tested by

no test coverage detected