Documentation ¶ Index ¶ type Database func NewDatabase(filePath string) (*Database, error) func (db Database) Get(key string) ([]byte, bool) func (db *Database) NewIterator() iterator.Iterator func (db *Database) Put(key string, value []byte) Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Database ¶ type Database struct { // contains filtered or unexported fields } func NewDatabase ¶ func NewDatabase(filePath string) (*Database, error) func (Database) Get ¶ func (db Database) Get(key string) ([]byte, bool) func (*Database) NewIterator ¶ func (db *Database) NewIterator() iterator.Iterator func (*Database) Put ¶ func (db *Database) Put(key string, value []byte) Source Files ¶ View all Source files leveldb.go Click to show internal directories. Click to hide internal directories.