Exemplo n.º 1
0
// SeekToFirst moves the iterator to the first key in the database.
func (iter *Iterator) SeekToFirst() {
	iter.isValid = C.rocksdb_iter_seek_to_first_ext(iter.c)
}
Exemplo n.º 2
0
func (it *Iterator) First() {
	it.isValid = C.rocksdb_iter_seek_to_first_ext(it.it)
}