Uses of Class
org.organicdesign.fp.collections.PersistentHashMap
-
Packages that use PersistentHashMap 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. -
-
Uses of PersistentHashMap in org.organicdesign.fp.collections
Fields in org.organicdesign.fp.collections declared as PersistentHashMap Modifier and Type Field Description static PersistentHashMap<java.lang.Object,java.lang.Object>PersistentHashMap. EMPTYMethods in org.organicdesign.fp.collections that return PersistentHashMap Modifier and Type Method Description PersistentHashMap<K,V>PersistentHashMap. assoc(K key, V val)static <K,V>
PersistentHashMap<K,V>PersistentHashMap. empty()static <K,V>
PersistentHashMap<K,V>PersistentHashMap. empty(Equator<K> e)PersistentHashMap<K,V>PersistentHashMap.MutableHashMap. immutable()static <K,V>
PersistentHashMap<K,V>PersistentHashMap. of(java.lang.Iterable<java.util.Map.Entry<K,V>> kvPairs)Returns a new PersistentHashMap of the given keys and their paired values.static <K,V>
PersistentHashMap<K,V>PersistentHashMap. ofEq(Equator<K> eq, java.lang.Iterable<java.util.Map.Entry<K,V>> es)Returns a new PersistentHashMap of the given keys and their paired values, skipping any null Entries.PersistentHashMap<K,V>PersistentHashMap. without(K key)
-