示例#1
0
文件: iterator.go 项目: CowLeo/qdb
// 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
文件: db.go 项目: tradia/gotable
func (iter *Iterator) Prev() {
	C.rocksdb_iter_prev(iter.it)
}