| 123 | |
| 124 | std::string DBmemory::Cursor::get_value_string() const { return common::as_string(it->second); } |
| 125 | common::BinaryArray DBmemory::Cursor::get_value_array() const { return it->second; } |
| 126 | |
| 127 | DBmemory::Cursor DBmemory::begin(const std::string &prefix, const std::string &middle, bool forward) const { |
| 128 | return Cursor(const_cast<DBmemory *>(this), prefix, middle, forward); |
nothing calls this directly
no outgoing calls
no test coverage detected