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

Public Member Functions

 MiniDBCursor (FILE *f, std::mutex *mutex)
 
void Seek (const string &) override
 Seek to a specific key (or if the key does not exist, seek to the immediate next). More...
 
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
virtual bool SupportsSeek ()
 
 C10_DISABLE_COPY_AND_ASSIGN (Cursor)
 

Detailed Description

Definition at line 22 of file db.cc.

Member Function Documentation

void caffe2::db::MiniDBCursor::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 31 of file db.cc.


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