MCPcopy Create free account
hub / github.com/bcndev/bytecoin / begin

Method begin

src/platform/DBsqlite3.cpp:182–184  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

180common::BinaryArray DBsqliteKV::Cursor::get_value_array() const { return common::BinaryArray(data, data + size); }
181
182DBsqliteKV::Cursor DBsqliteKV::begin(const std::string &prefix, const std::string &middle, bool forward) const {
183 return Cursor(this, db_dbi, prefix, middle, forward);
184}
185
186DBsqliteKV::Cursor DBsqliteKV::rbegin(const std::string &prefix, const std::string &middle) const {
187 return begin(prefix, middle, false);

Callers 1

run_testsMethod · 0.45

Calls 1

CursorClass · 0.70

Tested by

no test coverage detected