Class MappingKvIterator<K extends Comparable<K>,V,V_T>

java.lang.Object
com.usatiuk.objects.iterators.MappingKvIterator<K,V,V_T>
Type Parameters:
K - the type of the keys
V - the type of the values in the backing iterator
V_T - the type of the transformed values
All Implemented Interfaces:
CloseableKvIterator<K,V_T>, AutoCloseable, Iterator<org.apache.commons.lang3.tuple.Pair<K,V_T>>

public class MappingKvIterator<K extends Comparable<K>,V,V_T> extends Object implements CloseableKvIterator<K,V_T>
A mapping key-value iterator that transforms the values of a backing iterator using a specified function.