示例#1
0
文件: iterator.go 项目: CowLeo/qdb
// 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)
}
示例#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)
}
示例#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)
}
示例#4
0
文件: db.go 项目: tradia/gotable
func (iter *Iterator) SeekToLast() {
	C.rocksdb_iter_seek_to_last(iter.it)
}