Uses of Class
cloud.opencode.base.collections.immutable.PersistentSet
Packages that use PersistentSet
-
Uses of PersistentSet in cloud.opencode.base.collections.immutable
Methods in cloud.opencode.base.collections.immutable that return PersistentSetModifier and TypeMethodDescriptionReturn a new set with the given element added.PersistentSet.difference(PersistentSet<E> other) Return the difference of this set minus another set.static <E> PersistentSet<E> PersistentSet.empty()Return an empty persistent set.static <E> PersistentSet<E> Create a persistent set from an iterable.PersistentSet.intersection(PersistentSet<E> other) Return the intersection of this set and another set.static <E> PersistentSet<E> PersistentSet.of(E... elements) Create a persistent set from the given elements.Return a new set with the given element removed.PersistentSet.union(PersistentSet<E> other) Return the union of this set and another set.Methods in cloud.opencode.base.collections.immutable with parameters of type PersistentSetModifier and TypeMethodDescriptionPersistentSet.difference(PersistentSet<E> other) Return the difference of this set minus another set.PersistentSet.intersection(PersistentSet<E> other) Return the intersection of this set and another set.PersistentSet.union(PersistentSet<E> other) Return the union of this set and another set.