Beispiel #1
0
// SeekToLast moves the iterator to the last key in the database.
func (iter *Iterator) SeekToLast() {
	iter.isValid = C.rocksdb_iter_seek_to_last_ext(iter.c)
}
Beispiel #2
0
func (it *Iterator) Last() {
	it.isValid = C.rocksdb_iter_seek_to_last_ext(it.it)
}