Uses of Interface
org.violetlib.collections.IIterator
-
-
Uses of IIterator in org.violetlib.collections
Methods in org.violetlib.collections that return IIterator Modifier and Type Method and Description static <V> IIterator<V>
ICollection. concatenateIterators(IList<? extends IIterator<V>> sources)
static <V> IIterator<V>
ICollection. emptyIterator()
static <V> IIterator<V>
IIterator. filter(Iterator<V> it)
Create an IIterator from an Iterator by filtering any nulls it returns.static <V> IIterator<V>
IIterator. from(Iterator<V> it)
Create an IIterator from an Iterator that does not return null.abstract IIterator<T>
IIterable. iterator()
Returns an iterator over non-null elements of typeT
.Method parameters in org.violetlib.collections with type arguments of type IIterator Modifier and Type Method and Description static <V> IIterator<V>
ICollection. concatenateIterators(IList<? extends IIterator<V>> sources)
-