Ejemplo n.º 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)
}
Ejemplo n.º 2
0
// Prev moves the iterator to the previous sequential key in the database.
func (self *Iterator) Prev() {
	C.rocksdb_iter_prev(self.c)
}
Ejemplo n.º 3
0
// Prev moves the iterator to the previous sequential key in the database.
func (i *Iterator) Prev() {
	C.rocksdb_iter_prev(i.c)
}
Ejemplo n.º 4
0
Archivo: db.go Proyecto: tradia/gotable
func (iter *Iterator) Prev() {
	C.rocksdb_iter_prev(iter.it)
}