Uses of Interface
org.organicdesign.fp.collections.UnmodIterator
-
Packages that use UnmodIterator Package Description org.organicdesign.fp.collections Type-safe versions of immutable collections (mostly from Clojure), plus unmodifiable and immutable collection interfaces that fit these collections into the java.util interfaces.org.organicdesign.fp.xform Immutable descriptions of data transformations (Transformable), and a highly efficient single-pass, short-circuiting implementation that carries out those transforms in a single pass (Xform). -
-
Uses of UnmodIterator in org.organicdesign.fp.collections
Subinterfaces of UnmodIterator in org.organicdesign.fp.collections Modifier and Type Interface Description interfaceUnmodListIterator<E>An unmodifiable ListIteratorinterfaceUnmodSortedIterator<E>This represents an iterator with a guaranteed ordering.Classes in org.organicdesign.fp.collections that implement UnmodIterator Modifier and Type Class Description static classUnmodIterator.UnIteratorInstead of calling this directly, please useemptyUnmodIterator()insteadstatic classUnmodMap.UnEntry.EntryToUnEntryIter<K,V>static classUnmodMap.UnEntry.EntryToUnEntrySortedIter<K,V>static classUnmodMap.UnEntry.UnmodKeyIter<K,V>static classUnmodMap.UnEntry.UnmodSortedKeyIter<K,V>static classUnmodMap.UnEntry.UnmodSortedValIter<K,V>static classUnmodMap.UnEntry.UnmodValIter<K,V>static classUnmodSortedIterator.Wrapper<E>Methods in org.organicdesign.fp.collections that return UnmodIterator Modifier and Type Method Description static <T> @NotNull UnmodIterator<T>UnmodIterator. emptyUnmodIterator()Returns the empty unmodifiable iterator.static <K,V>
@NotNull UnmodIterator<UnmodMap.UnEntry<K,V>>UnmodMap.UnEntry. entryIterToUnEntryUnIter(Iterator<Map.Entry<K,V>> innerIter)@NotNull UnmodIterator<UnmodMap.UnEntry<K,V>>PersistentHashMap. iterator()@NotNull UnmodIterator<UnmodMap.UnEntry<K,V>>PersistentHashMap.MutHashMap. iterator()@NotNull UnmodIterator<E>PersistentHashSet. iterator()@NotNull UnmodIterator<E>PersistentHashSet.MutHashSet. iterator()@NotNull UnmodIterator<E>UnmodCollection. iterator()An unmodifiable iterator A one-time use, mutable, not-thread-safe way to get each value of the underling collection in turn.@NotNull UnmodIterator<T>UnmodIterable. iterator()A one-time use, mutable, not-thread-safe way to get each value of the underling collection in turn.@NotNull UnmodIterator<E>UnmodSet. iterator()Iterates over contents with no guarantees about their ordering.@NotNull UnmodIterator<K>PersistentHashMap. keyIterator()@NotNull UnmodIterator<K>PersistentHashMap.MutHashMap. keyIterator()default @NotNull UnmodIterator<K>UnmodMap. keyIterator()@NotNull UnmodIterator<V>PersistentHashMap.MutHashMap. valIterator()@NotNull UnmodIterator<V>PersistentHashMap. valIterator()default @NotNull UnmodIterator<V>UnmodMap. valIterator() -
Uses of UnmodIterator in org.organicdesign.fp.xform
Methods in org.organicdesign.fp.xform that return UnmodIterator Modifier and Type Method Description @NotNull UnmodIterator<A>Xform. iterator()
-