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