Uses of Class
org.organicdesign.fp.collections.PersistentHashSet
-
Packages that use PersistentHashSet 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 PersistentHashSet in org.organicdesign.fp.collections
Fields in org.organicdesign.fp.collections declared as PersistentHashSet Modifier and Type Field Description static PersistentHashSet<Object>PersistentHashSet. EMPTYMethods in org.organicdesign.fp.collections that return PersistentHashSet Modifier and Type Method Description static <E> PersistentHashSet<E>PersistentHashSet. empty()static <E> PersistentHashSet<E>PersistentHashSet. empty(Equator<E> eq)@NotNull PersistentHashSet<E>PersistentHashSet.MutHashSet. immutable()static <E> PersistentHashSet<E>PersistentHashSet. of(Iterable<E> elements)Returns a new PersistentHashSet of the values.static <E> PersistentHashSet<E>PersistentHashSet. ofEq(Equator<E> eq, Iterable<E> init)static <E> PersistentHashSet<E>PersistentHashSet. ofMap(ImMap<E,?> map)@NotNull PersistentHashSet<E>PersistentHashSet. put(E o)@NotNull PersistentHashSet<E>PersistentHashSet. without(E key)
-