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

Method get_value_array

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

Source from the content-addressed store, hash-verified

178
179std::string DBsqliteKV::Cursor::get_value_string() const { return std::string(data, size); }
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);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected