Uses of Interface
com.jongsoft.lang.collection.Iterator
-
Packages that use Iterator Package Description com.jongsoft.lang This package contains all interfaces used through out the functional library.com.jongsoft.lang.collection A purely functional based set of collection implementations based upon the Collection. -
-
Uses of Iterator in com.jongsoft.lang
Methods in com.jongsoft.lang that return Iterator Modifier and Type Method Description static <T> Iterator<T>
Collections. Iterator(java.lang.Iterable<T> iterable)
Create a new Iterator wrapping the provided iterable.static <T> Iterator<T>
Collections. Iterator(T... elements)
Creates a Iterator that contains all the provided elements.Methods in com.jongsoft.lang with parameters of type Iterator Modifier and Type Method Description static <T> Sequence<T>
Collections. List(Iterator<T> iterator)
Create a newSequence
containing all the elements in theiterator
. -
Uses of Iterator in com.jongsoft.lang.collection
Methods in com.jongsoft.lang.collection that return Iterator Modifier and Type Method Description static <T> Iterator<T>
Iterator. concat(Iterator<T>... iterators)
Combine multiple iterator instances into one big iterator.Iterator<T>
Iterator. filter(java.util.function.Predicate<T> predicate)
default Iterator<T>
Iterator. iterator()
Iterator<T>
Traversable. iterator()
default <U> Iterator<U>
Iterator. map(java.util.function.Function<T,U> mapper)
Methods in com.jongsoft.lang.collection with parameters of type Iterator Modifier and Type Method Description static <T> Iterator<T>
Iterator. concat(Iterator<T>... iterators)
Combine multiple iterator instances into one big iterator.
-