Uses of Interface
org.organicdesign.fp.collections.UnmodMap.UnEntry
-
Packages that use UnmodMap.UnEntry 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.tuple Immutable, type-safe, heterogeneous containers - ML calls these "records." ML, Haskell, and Scala use tuples - why not Java? Actually, tuples are *more* important in Java because Java does not have type aliases. -
-
Uses of UnmodMap.UnEntry in org.organicdesign.fp.collections
Methods in org.organicdesign.fp.collections that return UnmodMap.UnEntry Modifier and Type Method Description UnmodMap.UnEntry<K,V>PersistentTreeMap. last()Returns the last key/value pair in this map, or null if the map is empty.UnmodMap.UnEntry<K,V>UnmodMap.UnEntry.EntryToUnEntryIter. next()Methods in org.organicdesign.fp.collections that return types with arguments of type UnmodMap.UnEntry Modifier and Type Method Description static <K,V>
UnmodSortedIterable<UnmodMap.UnEntry<K,V>>UnmodSortedIterable. castFromSortedMap(java.util.SortedMap<K,V> sm)Option<UnmodMap.UnEntry<K,V>>BaseMap. entry(K key)Returns an option of the key/value pair associated with this keyOption<UnmodMap.UnEntry<K,V>>ImSortedMap. entry(K key)Option<UnmodMap.UnEntry<K,V>>PersistentHashMap. entry(K key)Option<UnmodMap.UnEntry<K,V>>PersistentHashMap.MutableHashMap. entry(K key)Option<UnmodMap.UnEntry<K,V>>PersistentTreeMap. entry(K key)Returns an Option of the key/value pair matching the given key, or Option.none() if the key is not found.static <K,V>
UnmodSortedIterator<UnmodMap.UnEntry<K,V>>UnmodMap.UnEntry. entryIterToUnEntrySortedUnIter(java.util.Iterator<java.util.Map.Entry<K,V>> innerIter)static <K,V>
UnmodIterator<UnmodMap.UnEntry<K,V>>UnmodMap.UnEntry. entryIterToUnEntryUnIter(java.util.Iterator<java.util.Map.Entry<K,V>> innerIter)Option<UnmodMap.UnEntry<K,V>>PersistentTreeMap. head()The first item in this iterable.UnmodSortedIterator<UnmodMap.UnEntry<K,V>>ImSortedMap. iterator()Returns an iterator over the UnEntries of this map in order.UnmodIterator<UnmodMap.UnEntry<K,V>>PersistentHashMap. iterator()UnmodIterator<UnmodMap.UnEntry<K,V>>PersistentHashMap.MutableHashMap. iterator()UnmodSortedIterator<UnmodMap.UnEntry<K,V>>PersistentTreeMap. iterator()Returns an iterator over the UnEntries of this map in order. -
Uses of UnmodMap.UnEntry in org.organicdesign.fp.tuple
Classes in org.organicdesign.fp.tuple that implement UnmodMap.UnEntry Modifier and Type Class Description classTuple2<A,B>Holds 2 items of potentially different types, and implements Map.Entry (and UnmodMap.UnEntry (there is no ImMap.ImEntry)).
-