Uses of Interface
org.organicdesign.fp.collections.UnmodCollection
-
Packages that use UnmodCollection 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 UnmodCollection in org.organicdesign.fp.collections
Subinterfaces of UnmodCollection in org.organicdesign.fp.collections Modifier and Type Interface Description interfaceBaseList<E>Adds copy-on-write, "fluent interface" methods toUnmodList.interfaceBaseSet<E>Adds copy-on-write, "fluent interface" methods toUnmodSet.interfaceImList<E>Immutable copy-on-write listinterfaceImSet<E>An immutable set with no guarantees about its orderinginterfaceImSortedSet<E>An immutable sorted set interfaceinterfaceMutList<E>interfaceMutSet<E>Interface for mutable (hash) set builder.interfaceUnmodList<E>Formalizes the return type ofCollections.unmodifiableList(List), deprecating mutator methods and implementing them to throw exceptions.interfaceUnmodSet<E>An unmodifiable setinterfaceUnmodSortedCollection<E>interfaceUnmodSortedSet<E>An unmodifiable SortedSet.Classes in org.organicdesign.fp.collections that implement UnmodCollection 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.MutHashSet<E>classPersistentTreeSet<E>A wrapper that turns a PersistentTreeMap into a set.classPersistentVector<E>This started out as Rich Hickey's PersistentVector class from Clojure in late 2014.static classPersistentVector.MutVector<F>classRangeOfIntAn efficient (in both time and memory) implementation of List.classRrbTree<E>An RRB Tree is an immutable List (like Clojure's PersistentVector) that also supports random inserts, deletes, and can be split and joined back together in logarithmic time.static classRrbTree.ImRrbt<E>Immutable version of anRrbTree.static classRrbTree.MutRrbt<E>Mutable version of anRrbTree.static classUnmodList.AbstractUnmodList<E>Implements equals and hashCode() methods compatible with java.util.List (which ignores order) to make defining unmod lists easier.Methods in org.organicdesign.fp.collections that return UnmodCollection Modifier and Type Method Description default @NotNull UnmodCollection<V>UnmodMap. values()Deprecated.
-