Uses of Interface
org.organicdesign.fp.collections.MutableSet
-
Packages that use MutableSet 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 MutableSet in org.organicdesign.fp
Methods in org.organicdesign.fp that return MutableSet Modifier and Type Method Description static <T> MutableSet<T>StaticImports. mutableSet(T... items)Returns a new MutableSet of the values. -
Uses of MutableSet in org.organicdesign.fp.collections
Classes in org.organicdesign.fp.collections that implement MutableSet Modifier and Type Class Description static classPersistentHashSet.MutableHashSet<E>Methods in org.organicdesign.fp.collections that return MutableSet Modifier and Type Method Description default MutableSet<java.util.Map.Entry<K,V>>MutableMap. entrySet()default MutableSet<K>MutableMap. keySet()Returns a mutable view of the keys contained in this map.MutableSet<E>ImSet. mutable()Returns a mutable version of this immutable set.MutableSet<E>MutableSet. put(E val)Adds an element.default MutableSet<E>MutableSet. union(java.lang.Iterable<? extends E> iter)Returns a new set containing all the items.MutableSet<E>MutableSet. without(E key)Removes this key from the set -
Uses of MutableSet in org.organicdesign.fp.xform
Methods in org.organicdesign.fp.xform that return MutableSet Modifier and Type Method Description default MutableSet<T>Transformable. toMutableSet()Realize a mutable hash set.
-