Uses of Interface
org.organicdesign.fp.collections.UnmodMap
-
Packages that use UnmodMap 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 UnmodMap in org.organicdesign.fp.collections
Subinterfaces of UnmodMap in org.organicdesign.fp.collections Modifier and Type Interface Description interfaceBaseMap<K,V>Adds copy-on-write, "fluent interface" methods toUnmodMap.interfaceBaseUnsortedMap<K,V>AddsBaseUnsortedMap.equator()toBaseMapwhich is an unsorted-only operation.interfaceImMap<K,V>An immutable map with no guarantees about its ordering.interfaceImSortedMap<K,V>An immutable sorted map.interfaceMutableMap<K,V>Interface for mutable (hash) map builder.interfaceUnmodSortedMap<K,V>An unmodifiable SortedMap.Classes in org.organicdesign.fp.collections that implement UnmodMap Modifier and Type Class Description classAbstractUnmodMap<K,V>Implements equals() and hashCode() methods compatible with java.util.Map (which ignores order) to make defining unmod Maps easier.classPersistentHashMap<K,V>Rich Hickey's immutable rendition of Phil Bagwell's Hash Array Mapped Trie.static classPersistentHashMap.MutableHashMap<K,V>classPersistentTreeMap<K,V>Persistent Red Black Tree.
-