Esempio n. 1
0
// SeekToLast moves the iterator to the last key in the database, as defined
// by the Comparator in the ReadOptions used to create this Iterator.
//
// This method is safe to call when Valid returns false.
func (it *Iterator) SeekToLast() {
	C.rocksdb_iter_seek_to_last(it.Iter)
}
Esempio n. 2
0
// SeekToLast moves the iterator to the last key in the database.
func (self *Iterator) SeekToLast() {
	C.rocksdb_iter_seek_to_last(self.c)
}
Esempio n. 3
0
// SeekToLast moves the iterator to the last key in the database.
func (i *Iterator) SeekToLast() {
	C.rocksdb_iter_seek_to_last(i.c)
}
Esempio n. 4
0
File: db.go Progetto: tradia/gotable
func (iter *Iterator) SeekToLast() {
	C.rocksdb_iter_seek_to_last(iter.it)
}