MCPcopy Create free account
hub / github.com/apple/foundationdb / moveFirst

Method moveFirst

fdbserver/KeyValueStoreSQLite.actor.cpp:750–754  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

748 }
749 }
750 void moveFirst() {
751 int empty = 1;
752 db.checkError("BtreeFirst", sqlite3BtreeFirst(cursor, &empty));
753 valid = !empty;
754 }
755 void moveNext() {
756 int empty = 1;
757 db.checkError("BtreeNext", sqlite3BtreeNext(cursor, &empty));

Callers 7

toStringMethod · 0.45
incrementalLazyClearFunction · 0.45
insertMethod · 0.45
toStringMethod · 0.45
Future<Void> move_implFunction · 0.45

Calls 2

sqlite3BtreeFirstFunction · 0.85
checkErrorMethod · 0.45

Tested by

no test coverage detected