Exemple #1
0
// Prev moves the iterator to the previous sequential key in the database, as
// defined by the Comparator in the ReadOptions used to create this Iterator.
//
// If Valid returns false, this method will panic.
func (it *Iterator) Prev() {
	C.rocksdb_iter_prev(it.Iter)
}
Exemple #2
0
// Prev moves the iterator to the previous sequential key in the database.
func (self *Iterator) Prev() {
	C.rocksdb_iter_prev(self.c)
}
Exemple #3
0
// Prev moves the iterator to the previous sequential key in the database.
func (i *Iterator) Prev() {
	C.rocksdb_iter_prev(i.c)
}
Exemple #4
0
func (iter *Iterator) Prev() {
	C.rocksdb_iter_prev(iter.it)
}