コード例 #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
ファイル: iterator.go プロジェクト: butine/research
// 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
ファイル: iterator.go プロジェクト: daaku/gorocksdb
// 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)
}