// Next moves the iterator to the next sequential key in the database. func (iter *Iterator) Next() { iter.isValid = C.rocksdb_iter_next_ext(iter.c) }
func (it *Iterator) Next() { it.isValid = C.rocksdb_iter_next_ext(it.it) }