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> UnmodIterator<T>UnmodIterator. emptyUnmodIterator()Returns the empty unmodifiable iterator.static <K,V>
UnmodIterator<UnmodMap.UnEntry<K,V>>UnmodMap.UnEntry. entryIterToUnEntryUnIter(java.util.Iterator<java.util.Map.Entry<K,V>> innerIter)UnmodIterator<UnmodMap.UnEntry<K,V>>PersistentHashMap. iterator()UnmodIterator<UnmodMap.UnEntry<K,V>>PersistentHashMap.MutableHashMap. iterator()UnmodIterator<E>PersistentHashSet. iterator()UnmodIterator<E>PersistentHashSet.MutableHashSet. iterator()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.UnmodIterator<T>UnmodIterable. iterator()A one-time use, mutable, not-thread-safe way to get each value of the underling collection in turn.UnmodIterator<E>UnmodSet. iterator()Iterates over contents with no guarantees about their ordering.UnmodIterator<K>PersistentHashMap. keyIterator()UnmodIterator<K>PersistentHashMap.MutableHashMap. keyIterator()default UnmodIterator<K>UnmodMap. keyIterator()UnmodIterator<V>PersistentHashMap.MutableHashMap. valIterator()UnmodIterator<V>PersistentHashMap. valIterator()default 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 UnmodIterator<A>Xform. iterator()
-