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<java.lang.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)PersistentHashSet<E>PersistentHashSet.MutableHashSet. immutable()static <E> PersistentHashSet<E>PersistentHashSet. of(java.lang.Iterable<E> elements)Returns a new PersistentHashSet of the values.static <E> PersistentHashSet<E>PersistentHashSet. ofEq(Equator<E> eq, java.lang.Iterable<E> init)static <E> PersistentHashSet<E>PersistentHashSet. ofMap(ImMap<E,?> map)PersistentHashSet<E>PersistentHashSet. put(E o)PersistentHashSet<E>PersistentHashSet. without(E key)
-