Uses of Interface
org.organicdesign.fp.collections.MutSet
-
Packages that use MutSet Package Description org.organicdesign.fp A tiny data definition language for Java, in Java.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.xform Immutable descriptions of data transformations (Transformable), and a highly efficient single-pass, short-circuiting implementation that carries out those transforms in a single pass (Xform). -
-
Uses of MutSet in org.organicdesign.fp
Methods in org.organicdesign.fp that return MutSet Modifier and Type Method Description static <T> @NotNull MutSet<T>StaticImports. mutableSet(T @Nullable ... items)Returns a new MutSet of the values. -
Uses of MutSet in org.organicdesign.fp.collections
Classes in org.organicdesign.fp.collections that implement MutSet Modifier and Type Class Description static classPersistentHashSet.MutHashSet<E>Methods in org.organicdesign.fp.collections that return MutSet Modifier and Type Method Description default @NotNull MutSet<Map.Entry<K,V>>MutMap. entrySet()default @NotNull MutSet<K>MutMap. keySet()Returns a mutable view of the keys contained in this map.@NotNull MutSet<E>ImSet. mutable()Returns a mutable version of this immutable set.@NotNull MutSet<E>MutSet. put(E val)Adds an element.default @NotNull MutSet<E>MutSet. union(Iterable<? extends E> iter)Returns a new set containing all the items.@NotNull MutSet<E>MutSet. without(E key)Removes this key from the set -
Uses of MutSet in org.organicdesign.fp.xform
Methods in org.organicdesign.fp.xform that return MutSet Modifier and Type Method Description default @NotNull MutSet<T>Transformable. toMutSet()Realize a mutable hash set.
-