Beispiel #1
0
// SeekToLast moves the iterator to the last key in the database, as defined
// by the Comparator in the ReadOptions used to create this Iterator.
//
// This method is safe to call when Valid returns false.
func (it *Iterator) SeekToLast() {
	C.rocksdb_iter_seek_to_last(it.Iter)
}
Beispiel #2
0
// SeekToLast moves the iterator to the last key in the database.
func (self *Iterator) SeekToLast() {
	C.rocksdb_iter_seek_to_last(self.c)
}
Beispiel #3
0
// SeekToLast moves the iterator to the last key in the database.
func (i *Iterator) SeekToLast() {
	C.rocksdb_iter_seek_to_last(i.c)
}
Beispiel #4
0
func (iter *Iterator) SeekToLast() {
	C.rocksdb_iter_seek_to_last(iter.it)
}