示例#1
0
文件: iterator.go 项目: unigraph/rdb
// 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)
}
示例#2
0
func (it *Iterator) Last() {
	it.isValid = C.rocksdb_iter_seek_to_last_ext(it.it)
}