Uses of Interface
org.organicdesign.fp.collections.UnmodSet
-
Packages that use UnmodSet 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 UnmodSet in org.organicdesign.fp.collections
Subinterfaces of UnmodSet in org.organicdesign.fp.collections Modifier and Type Interface Description interfaceBaseSet<E>Adds copy-on-write, "fluent interface" methods toUnmodSet.interfaceImSet<E>An immutable set with no guarantees about its orderinginterfaceImSortedSet<E>An immutable sorted set interfaceinterfaceMutableSet<E>Interface for mutable (hash) set builder.interfaceUnmodSortedSet<E>An unmodifiable SortedSet.Classes in org.organicdesign.fp.collections that implement UnmodSet Modifier and Type Class Description classAbstractUnmodSet<T>Implements equals and hashCode() methods compatible with java.util.Set (which ignores order) to make defining unmod sets easier, especially for implementing Map.keySet() and such.classPersistentHashSet<E>A wrapper that turns a PersistentTreeMap into a set.static classPersistentHashSet.MutableHashSet<E>classPersistentTreeSet<E>A wrapper that turns a PersistentTreeMap into a set.Methods in org.organicdesign.fp.collections that return UnmodSet Modifier and Type Method Description default UnmodSet<java.util.Map.Entry<K,V>>UnmodMap. entrySet()Returns a view of the mappings contained in this map.default UnmodSet<K>UnmodMap. keySet()Returns a view of the keys contained in this map.
-