All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sirix.index.art.ValueIterator Maven / Gradle / Ivy

package io.sirix.index.art;

final class ValueIterator extends PrivateEntryIterator {
	ValueIterator(AdaptiveRadixTree m, LeafNode first) {
		super(m, first);
	}
	@Override
	public V next() {
		return nextEntry().getValue();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy