Uses of Interface
org.organicdesign.fp.collections.BaseSet
-
Packages that use BaseSet 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 BaseSet in org.organicdesign.fp.collections
Subinterfaces of BaseSet in org.organicdesign.fp.collections Modifier and Type Interface Description interfaceImSet<E>An immutable set with no guarantees about its orderinginterfaceImSortedSet<E>An immutable sorted set interfaceinterfaceMutSet<E>Interface for mutable (hash) set builder.Classes in org.organicdesign.fp.collections that implement BaseSet Modifier and Type Class Description 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.Methods in org.organicdesign.fp.collections that return BaseSet Modifier and Type Method Description @NotNull BaseSet<Map.Entry<K,V>>BaseMap. entrySet()Returns a view of the mappings contained in this map.@NotNull BaseSet<K>BaseMap. keySet()Returns a view of the keys contained in this map.@NotNull BaseSet<E>BaseSet. put(E e)Adds an element.@NotNull BaseSet<E>BaseSet. union(Iterable<? extends E> iter)Returns a new set containing all the items.@NotNull BaseSet<E>BaseSet. without(E key)Removes this key from the set
-