Пример #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)
}
Пример #2
0
// Prev moves the iterator to the previous sequential key in the database.
func (self *Iterator) Prev() {
	C.rocksdb_iter_prev(self.c)
}
Пример #3
0
// Prev moves the iterator to the previous sequential key in the database.
func (i *Iterator) Prev() {
	C.rocksdb_iter_prev(i.c)
}
Пример #4
0
func (iter *Iterator) Prev() {
	C.rocksdb_iter_prev(iter.it)
}