예제 #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
파일: iterator.go 프로젝트: JREAMLU/ledisdb
func (it *Iterator) Last() {
	it.isValid = C.rocksdb_iter_seek_to_last_ext(it.it)
}