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

Method IterStatus

src/leveldb/db/db_test.cc:491–499  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

489 }
490
491 std::string IterStatus(Iterator* iter) {
492 std::string result;
493 if (iter->Valid()) {
494 result = iter->key().ToString() + "->" + iter->value().ToString();
495 } else {
496 result = "(invalid)";
497 }
498 return result;
499 }
500
501 bool DeleteAnSSTFile() {
502 std::vector<std::string> filenames;

Callers

nothing calls this directly

Calls 4

ValidMethod · 0.45
ToStringMethod · 0.45
keyMethod · 0.45
valueMethod · 0.45

Tested by

no test coverage detected