- map(Iterator<E>, Function<? super E, ? extends R>) - Static method in class com.github.robtimus.util.iterator.IteratorUtils
-
Returns an iterator that applies a function to the elements of another iterator.
- map(Function<? super E, ? extends R>) - Method in class com.github.robtimus.util.iterator.StreamLikeIterator
-
Returns an iterator that applies a function to the elements of this iterator.
- max(Iterator<E>, Comparator<? super E>) - Static method in class com.github.robtimus.util.iterator.IteratorUtils
-
Returns the maximum element of an iterator according to a specific comparator.
- max(Comparator<? super E>) - Method in class com.github.robtimus.util.iterator.StreamLikeIterator
-
Returns the maximum element of this iterator according to a specific comparator.
- min(Iterator<E>, Comparator<? super E>) - Static method in class com.github.robtimus.util.iterator.IteratorUtils
-
Returns the minimum element of an iterator according to a specific comparator.
- min(Comparator<? super E>) - Method in class com.github.robtimus.util.iterator.StreamLikeIterator
-
Returns the minimum element of this iterator according to a specific comparator.