// 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) }
// Prev moves the iterator to the previous sequential key in the database. func (self *Iterator) Prev() { C.rocksdb_iter_prev(self.c) }
// Prev moves the iterator to the previous sequential key in the database. func (i *Iterator) Prev() { C.rocksdb_iter_prev(i.c) }
func (iter *Iterator) Prev() { C.rocksdb_iter_prev(iter.it) }