Caffe2 - C++ API
A deep learning, cross platform ML framework
Public Member Functions
caffe2::db::LevelDBCursor Class Reference
Inheritance diagram for caffe2::db::LevelDBCursor:
caffe2::db::Cursor

Public Member Functions

 LevelDBCursor (leveldb::DB *db)
 
void Seek (const string &key) override
 Seek to a specific key (or if the key does not exist, seek to the immediate next). More...
 
bool SupportsSeek () override
 
void SeekToFirst () override
 Seek to the first key in the database.
 
void Next () override
 Go to the next location in the database.
 
string key () override
 Returns the current key.
 
string value () override
 Returns the current value.
 
bool Valid () override
 Returns whether the current location is valid - for example, if we have reached the end of the database, return false.
 
- Public Member Functions inherited from caffe2::db::Cursor
 C10_DISABLE_COPY_AND_ASSIGN (Cursor)
 

Detailed Description

Definition at line 15 of file leveldb.cc.

Member Function Documentation

void caffe2::db::LevelDBCursor::Seek ( const string &  key)
inlineoverridevirtual

Seek to a specific key (or if the key does not exist, seek to the immediate next).

This is optional for dbs, and in default, SupportsSeek() returns false meaning that the db cursor does not support it.

Implements caffe2::db::Cursor.

Definition at line 22 of file leveldb.cc.


The documentation for this class was generated from the following file: