Uses of Interface
org.eclipse.collections.api.set.MutableSet
| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
| org.eclipse.collections.api.bag |
This package contains interfaces for Bag API.
|
| org.eclipse.collections.api.bimap |
This package contains interfaces for BiMap API.
|
| org.eclipse.collections.api.factory.set | |
| org.eclipse.collections.api.factory.set.strategy |
This package contains Factory API for
ImmutableHashingStrategySetFactory and MutableHashingStrategySetFactory. |
| org.eclipse.collections.api.map |
This package contains interfaces for map API which enhance the performance and functionality of
Map |
| org.eclipse.collections.api.map.primitive |
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
|
| org.eclipse.collections.api.map.sorted |
This package contains mutable and immutable sorted map interfaces.
|
| org.eclipse.collections.api.multimap.set |
This package contains interfaces for
SetMultimap. |
| org.eclipse.collections.api.partition.set |
This package contains interfaces for
PartitionSet. |
| org.eclipse.collections.api.set |
This package contains interfaces for set API which enhance the performance and functionality of
Set. |
| org.eclipse.collections.api.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
| org.eclipse.collections.impl |
This package contains implementations for Eclipse Collections API.
|
| org.eclipse.collections.impl.bag | |
| org.eclipse.collections.impl.bag.immutable |
This package contains implementations of the
ImmutableBag interface. |
| org.eclipse.collections.impl.bag.mutable |
This package contains implementations of the
MutableBag interface. |
| org.eclipse.collections.impl.bimap | |
| org.eclipse.collections.impl.bimap.mutable |
This package contains implementations of the
MutableBiMap interface. |
| org.eclipse.collections.impl.block.factory |
This package contains factory implementations for
Function, Predicate, SerializableComparator and Procedure. |
| org.eclipse.collections.impl.collection | |
| org.eclipse.collections.impl.collection.mutable |
This package contains implementations of the
MutableCollection interface. |
| org.eclipse.collections.impl.collector | |
| org.eclipse.collections.impl.factory |
This package contains static utilities for creating mutable and immutable collection factories.
|
| org.eclipse.collections.impl.lazy.parallel | |
| org.eclipse.collections.impl.list |
This package contains implementations of the
ListIterable interface. |
| org.eclipse.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
| org.eclipse.collections.impl.map.mutable |
This package contains implementations of the
MutableMap interface. |
| org.eclipse.collections.impl.map.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
| org.eclipse.collections.impl.map.ordered.mutable | |
| org.eclipse.collections.impl.map.sorted.mutable |
This package contains implementations of the
MutableSortedMap interface. |
| org.eclipse.collections.impl.multimap.set |
This package contains implementations of the
SetMultimap interface. |
| org.eclipse.collections.impl.partition.set |
This package contains implementations of the
PartitionSet interface. |
| org.eclipse.collections.impl.partition.set.strategy |
This package contains implementations of the
PartitionMutableSet interface. |
| org.eclipse.collections.impl.set | |
| org.eclipse.collections.impl.set.fixed |
This package contains implementations of
FixedSizeSet. |
| org.eclipse.collections.impl.set.mutable |
This package package contains implementations of
MutableSet. |
| org.eclipse.collections.impl.set.mutable.primitive |
This package contains implementations of the mutable primitive set interfaces.
|
| org.eclipse.collections.impl.set.strategy.mutable |
This package contains implementations of sets with user defined
HashingStrategys. |
| org.eclipse.collections.impl.stack.mutable |
This package contains implementations of the
MutableStack interface. |
| org.eclipse.collections.impl.utility |
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
|
| org.eclipse.collections.impl.utility.internal |
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
|
-
Uses of MutableSet in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableSet Modifier and Type Method Description MutableSet<T>ParallelIterable. toSet()MutableSet<T>RichIterable. toSet()Converts the collection to a MutableSet implementation. -
Uses of MutableSet in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return MutableSet Modifier and Type Method Description default MutableSet<T>MutableBag. selectUnique()MutableSet<Pair<T,Integer>>MutableBag. zipWithIndex()Deprecated.in 6.0. -
Uses of MutableSet in org.eclipse.collections.api.bimap
Methods in org.eclipse.collections.api.bimap that return MutableSet Modifier and Type Method Description MutableSet<V>MutableBiMap. reject(Predicate<? super V> predicate)<P> MutableSet<V>MutableBiMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)MutableSet<V>MutableBiMap. select(Predicate<? super V> predicate)<S> MutableSet<S>MutableBiMap. selectInstancesOf(Class<S> clazz)<P> MutableSet<V>MutableBiMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<S> MutableSet<Pair<V,S>>MutableBiMap. zip(Iterable<S> that)Deprecated.in 8.0.MutableSet<Pair<V,Integer>>MutableBiMap. zipWithIndex()Deprecated.in 8.0. -
Uses of MutableSet in org.eclipse.collections.api.factory.set
Methods in org.eclipse.collections.api.factory.set that return MutableSet Modifier and Type Method Description <T> MutableSet<T>MutableSetFactory. empty()<T> MutableSet<T>FixedSizeSetFactory. fromStream(Stream<? extends T> stream)<T> MutableSet<T>MutableSetFactory. fromStream(Stream<? extends T> stream)default <T> MutableSet<T>MutableSetFactory. of()Same asMutableSetFactory.empty().default <T> MutableSet<T>MutableSetFactory. of(T... items)Same asMutableSetFactory.with(Object[]).<T> MutableSet<T>FixedSizeSetFactory. ofAll(Iterable<? extends T> items)default <T> MutableSet<T>MutableSetFactory. ofAll(Iterable<? extends T> items)Same asMutableSetFactory.withAll(Iterable).default <T> MutableSet<T>MutableSetFactory. ofInitialCapacity(int capacity)Same asMutableSetFactory.empty().default <T> MutableSet<T>MutableSetFactory. with()Same asMutableSetFactory.empty().<T> MutableSet<T>MutableSetFactory. with(T... items)<T> MutableSet<T>FixedSizeSetFactory. withAll(Iterable<? extends T> items)<T> MutableSet<T>MutableSetFactory. withAll(Iterable<? extends T> items)<T> MutableSet<T>MutableSetFactory. withInitialCapacity(int capacity)Same asMutableSetFactory.empty(). -
Uses of MutableSet in org.eclipse.collections.api.factory.set.strategy
Methods in org.eclipse.collections.api.factory.set.strategy that return MutableSet Modifier and Type Method Description <T> MutableSet<T>MutableHashingStrategySetFactory. of(HashingStrategy<? super T> hashingStrategy)<T> MutableSet<T>MutableHashingStrategySetFactory. of(HashingStrategy<? super T> hashingStrategy, T... items)<T> MutableSet<T>MutableHashingStrategySetFactory. ofAll(HashingStrategy<? super T> hashingStrategy, Iterable<? extends T> items)<T> MutableSet<T>MutableHashingStrategySetFactory. ofInitialCapacity(HashingStrategy<? super T> hashingStrategy, int capacity)<T> MutableSet<T>MutableHashingStrategySetFactory. with(HashingStrategy<? super T> hashingStrategy)<T> MutableSet<T>MutableHashingStrategySetFactory. with(HashingStrategy<? super T> hashingStrategy, T... items)<T> MutableSet<T>MutableHashingStrategySetFactory. withAll(HashingStrategy<? super T> hashingStrategy, Iterable<? extends T> items)<T> MutableSet<T>MutableHashingStrategySetFactory. withInitialCapacity(HashingStrategy<? super T> hashingStrategy, int capacity) -
Uses of MutableSet in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableSet Modifier and Type Method Description MutableSet<Pair<V,Integer>>MutableMap. zipWithIndex()Deprecated.in 6.0. -
Uses of MutableSet in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableSet Modifier and Type Method Description MutableSet<Pair<V,Integer>>MutablePrimitiveObjectMap. zipWithIndex()Deprecated.in 7.0. -
Uses of MutableSet in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return MutableSet Modifier and Type Method Description MutableSet<Map.Entry<K,V>>MutableSortedMap. entrySet()MutableSet<K>MutableSortedMap. keySet()The underlying set for the keys is sorted in ascending order according to their natural ordering or a custom comparator. -
Uses of MutableSet in org.eclipse.collections.api.multimap.set
Methods in org.eclipse.collections.api.multimap.set that return MutableSet Modifier and Type Method Description MutableSet<V>MutableSetMultimap. get(K key)MutableSet<V>MutableSetMultimap. getIfAbsentPutAll(K key, Iterable<? extends V> values)MutableSet<V>MutableSetMultimap. removeAll(Object key)MutableSet<V>MutableSetMultimap. replaceValues(K key, Iterable<? extends V> values) -
Uses of MutableSet in org.eclipse.collections.api.partition.set
Methods in org.eclipse.collections.api.partition.set that return MutableSet Modifier and Type Method Description MutableSet<T>PartitionMutableSet. getRejected()MutableSet<T>PartitionMutableSet. getSelected() -
Uses of MutableSet in org.eclipse.collections.api.set
Subinterfaces of MutableSet in org.eclipse.collections.api.set Modifier and Type Interface Description interfaceFixedSizeSet<T>A FixedSizeSet is a set that may be mutated, but cannot grow or shrink in size.interfaceMultiReaderSet<T>A MultiReaderSet provides thread-safe iteration for a set through methodswithReadLockAndDelegate()andwithWriteLockAndDelegate().Methods in org.eclipse.collections.api.set that return MutableSet Modifier and Type Method Description MutableSet<T>MutableSet. asSynchronized()MutableSet<T>MutableSet. asUnmodifiable()Returns an unmodifiable view of the set.MutableSet<T>MutableSet. clone()<V> MutableSet<V>MutableSet. collect(Function<? super T,? extends V> function)<V> MutableSet<V>MutableSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<P, V> MutableSet<V>MutableSet. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)MutableSet<T>MutableSet. difference(SetIterable<? extends T> subtrahendSet)<V> MutableSet<V>MutableSet. flatCollect(Function<? super T,? extends Iterable<V>> function)default <P, V> MutableSet<V>MutableSet. flatCollectWith(Function2<? super T,? super P,? extends Iterable<V>> function, P parameter)MutableSet<T>MutableSet. intersect(SetIterable<? extends T> set)MutableSet<T>MutableSet. newEmpty()MutableSet<UnsortedSetIterable<T>>MutableSet. powerSet()MutableSet<T>MutableSet. reject(Predicate<? super T> predicate)<P> MutableSet<T>MutableSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)MutableSet<T>MutableSet. select(Predicate<? super T> predicate)<S> MutableSet<S>MutableSet. selectInstancesOf(Class<S> clazz)<P> MutableSet<T>MutableSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter)MutableSet<T>MutableSet. symmetricDifference(SetIterable<? extends T> setB)MutableSet<T>MutableSet. tap(Procedure<? super T> procedure)MutableSet<T>MutableSet. union(SetIterable<? extends T> set)MutableSet<T>FixedSizeSet. with(T element)default MutableSet<T>MutableSet. with(T element)MutableSet<T>FixedSizeSet. withAll(Iterable<? extends T> elements)default MutableSet<T>MutableSet. withAll(Iterable<? extends T> elements)MutableSet<T>FixedSizeSet. without(T element)default MutableSet<T>MutableSet. without(T element)MutableSet<T>FixedSizeSet. withoutAll(Iterable<? extends T> elements)default MutableSet<T>MutableSet. withoutAll(Iterable<? extends T> elements)<S> MutableSet<Pair<T,S>>MutableSet. zip(Iterable<S> that)Deprecated.in 6.0.MutableSet<Pair<T,Integer>>MutableSet. zipWithIndex()Deprecated.in 6.0.Method parameters in org.eclipse.collections.api.set with type arguments of type MutableSet Modifier and Type Method Description voidMultiReaderSet. withReadLockAndDelegate(Procedure<? super MutableSet<T>> procedure)voidMultiReaderSet. withWriteLockAndDelegate(Procedure<? super MutableSet<T>> procedure) -
Uses of MutableSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return MutableSet Modifier and Type Method Description <V> MutableSet<V>MutableBooleanSet. collect(BooleanToObjectFunction<? extends V> function)<V> MutableSet<V>MutableByteSet. collect(ByteToObjectFunction<? extends V> function)<V> MutableSet<V>MutableCharSet. collect(CharToObjectFunction<? extends V> function)<V> MutableSet<V>MutableDoubleSet. collect(DoubleToObjectFunction<? extends V> function)<V> MutableSet<V>MutableFloatSet. collect(FloatToObjectFunction<? extends V> function)<V> MutableSet<V>MutableIntSet. collect(IntToObjectFunction<? extends V> function)<V> MutableSet<V>MutableLongSet. collect(LongToObjectFunction<? extends V> function)<V> MutableSet<V>MutableShortSet. collect(ShortToObjectFunction<? extends V> function) -
Uses of MutableSet in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl that return MutableSet Modifier and Type Method Description MutableSet<T>AbstractRichIterable. toSet()MutableSet<T>UnmodifiableRichIterable. toSet() -
Uses of MutableSet in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag that return MutableSet Modifier and Type Method Description MutableSet<T>AbstractBag. toSet() -
Uses of MutableSet in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable that return MutableSet Modifier and Type Method Description MutableSet<T>ImmutableHashBag. toSet() -
Uses of MutableSet in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable that return MutableSet Modifier and Type Method Description MutableSet<T>MultiReaderHashBag. selectUnique()MutableSet<T>SynchronizedBag. selectUnique()MutableSet<T>UnmodifiableBag. selectUnique()MutableSet<Pair<T,Integer>>AbstractMutableBag. zipWithIndex()Deprecated.in 6.0.MutableSet<Pair<T,Integer>>MultiReaderHashBag. zipWithIndex()Deprecated.in 6.0.MutableSet<Pair<T,Integer>>SynchronizedBag. zipWithIndex()Deprecated.in 6.0.MutableSet<Pair<T,Integer>>UnmodifiableBag. zipWithIndex()Deprecated.in 6.0. -
Uses of MutableSet in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap that return MutableSet Modifier and Type Method Description MutableSet<V>AbstractBiMap. toSet() -
Uses of MutableSet in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable that return MutableSet Modifier and Type Method Description MutableSet<V>SynchronizedBiMap. reject(Predicate<? super V> predicate)MutableSet<V>UnmodifiableBiMap. reject(Predicate<? super V> predicate)<P> MutableSet<V>SynchronizedBiMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> MutableSet<V>UnmodifiableBiMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)MutableSet<V>SynchronizedBiMap. select(Predicate<? super V> predicate)MutableSet<V>UnmodifiableBiMap. select(Predicate<? super V> predicate)<S> MutableSet<S>SynchronizedBiMap. selectInstancesOf(Class<S> clazz)<S> MutableSet<S>UnmodifiableBiMap. selectInstancesOf(Class<S> clazz)<P> MutableSet<V>SynchronizedBiMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<P> MutableSet<V>UnmodifiableBiMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)MutableSet<V>UnmodifiableBiMap. toSet()<S> MutableSet<Pair<V,S>>SynchronizedBiMap. zip(Iterable<S> that)Deprecated.in 8.0.<S> MutableSet<Pair<V,S>>UnmodifiableBiMap. zip(Iterable<S> that)MutableSet<Pair<V,Integer>>SynchronizedBiMap. zipWithIndex()Deprecated.in 8.0.MutableSet<Pair<V,Integer>>UnmodifiableBiMap. zipWithIndex() -
Uses of MutableSet in org.eclipse.collections.impl.block.factory
Methods in org.eclipse.collections.impl.block.factory that return types with arguments of type MutableSet Modifier and Type Method Description static <T> Function0<MutableSet<T>>Functions0. newUnifiedSet() -
Uses of MutableSet in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection that return MutableSet Modifier and Type Method Description MutableSet<T>AbstractSynchronizedRichIterable. toSet() -
Uses of MutableSet in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable that return MutableSet Modifier and Type Method Description MutableSet<T>AbstractCollectionAdapter. toSet()MutableSet<T>AbstractMultiReaderMutableCollection. toSet()MutableSet<T>AbstractUnmodifiableMutableCollection. toSet()static <E> MutableSet<E>CollectionAdapter. wrapSet(Iterable<E> iterable) -
Uses of MutableSet in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector that return types with arguments of type MutableSet Modifier and Type Method Description static <T> Collector<T,?,MutableSet<T>>Collectors2. toSet()Returns the elements as a MutableSet. -
Uses of MutableSet in org.eclipse.collections.impl.factory
Methods in org.eclipse.collections.impl.factory that return MutableSet Modifier and Type Method Description static <T> MutableSet<T>Sets. adapt(Set<T> list)static <E> MutableSet<E>Sets. difference(Set<? extends E> minuendSet, Set<? extends E> subtrahendSet)static <E> MutableSet<E>Sets. differenceAll(Set<? extends E>... sets)static <E> MutableSet<E>Sets. intersect(Set<? extends E> setA, Set<? extends E> setB)static <E> MutableSet<E>Sets. intersectAll(Set<? extends E>... sets)static <T> MutableSet<T>Iterables. mSet()static <T> MutableSet<T>Iterables. mSet(T... elements)static <T> MutableSet<MutableSet<T>>Sets. powerSet(Set<T> set)static <E> MutableSet<E>Sets. symmetricDifference(Set<? extends E> setA, Set<? extends E> setB)static <E> MutableSet<E>Sets. union(Set<? extends E> setA, Set<? extends E> setB)static <E> MutableSet<E>Sets. unionAll(Set<? extends E>... sets)Methods in org.eclipse.collections.impl.factory that return types with arguments of type MutableSet Modifier and Type Method Description static <T> MutableSet<MutableSet<T>>Sets. powerSet(Set<T> set) -
Uses of MutableSet in org.eclipse.collections.impl.lazy.parallel
Methods in org.eclipse.collections.impl.lazy.parallel that return MutableSet Modifier and Type Method Description MutableSet<T>AbstractMultiReaderParallelIterable. toSet()MutableSet<T>AbstractParallelIterable. toSet()MutableSet<T>AbstractSynchronizedParallelIterable. toSet()MutableSet<T>NonParallelIterable. toSet() -
Uses of MutableSet in org.eclipse.collections.impl.list
Methods in org.eclipse.collections.impl.list that return MutableSet Modifier and Type Method Description MutableSet<Integer>Interval. toSet()static MutableSet<Integer>Interval. toSet(int from, int to)Returns an Set representing the Integer values from the value from to the value to. -
Uses of MutableSet in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return MutableSet Modifier and Type Method Description MutableSet<T>AbstractMutableList. toSet() -
Uses of MutableSet in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable that return MutableSet Modifier and Type Method Description MutableSet<V>UnmodifiableMutableMap. toSet()MutableSet<Pair<V,Integer>>AbstractMutableMap. zipWithIndex()Deprecated.in 6.0.MutableSet<Pair<V,Integer>>SynchronizedMutableMap. zipWithIndex()Deprecated.in 6.0.MutableSet<Pair<V,Integer>>UnmodifiableMutableMap. zipWithIndex()Deprecated.in 6.0. -
Uses of MutableSet in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableSet Modifier and Type Method Description <V> MutableSet<V>AbstractMutableByteKeySet. collect(ByteToObjectFunction<? extends V> function)<V> MutableSet<V>AbstractMutableCharKeySet. collect(CharToObjectFunction<? extends V> function)<V> MutableSet<V>AbstractMutableDoubleKeySet. collect(DoubleToObjectFunction<? extends V> function)<V> MutableSet<V>AbstractMutableFloatKeySet. collect(FloatToObjectFunction<? extends V> function)<V> MutableSet<V>AbstractMutableIntKeySet. collect(IntToObjectFunction<? extends V> function)<V> MutableSet<V>AbstractMutableLongKeySet. collect(LongToObjectFunction<? extends V> function)<V> MutableSet<V>AbstractMutableShortKeySet. collect(ShortToObjectFunction<? extends V> function)MutableSet<V>ByteObjectHashMap. toSet()MutableSet<V>CharObjectHashMap. toSet()MutableSet<V>DoubleObjectHashMap. toSet()MutableSet<V>FloatObjectHashMap. toSet()MutableSet<V>IntObjectHashMap. toSet()MutableSet<V>LongObjectHashMap. toSet()MutableSet<V>ShortObjectHashMap. toSet()MutableSet<V>SynchronizedByteObjectMap. toSet()MutableSet<V>SynchronizedCharObjectMap. toSet()MutableSet<V>SynchronizedDoubleObjectMap. toSet()MutableSet<V>SynchronizedFloatObjectMap. toSet()MutableSet<V>SynchronizedIntObjectMap. toSet()MutableSet<V>SynchronizedLongObjectMap. toSet()MutableSet<V>SynchronizedShortObjectMap. toSet()MutableSet<V>UnmodifiableByteObjectMap. toSet()MutableSet<V>UnmodifiableCharObjectMap. toSet()MutableSet<V>UnmodifiableDoubleObjectMap. toSet()MutableSet<V>UnmodifiableFloatObjectMap. toSet()MutableSet<V>UnmodifiableIntObjectMap. toSet()MutableSet<V>UnmodifiableLongObjectMap. toSet()MutableSet<V>UnmodifiableShortObjectMap. toSet()MutableSet<Pair<V,Integer>>ByteObjectHashMap. zipWithIndex()Deprecated.in 7.0.MutableSet<Pair<V,Integer>>CharObjectHashMap. zipWithIndex()Deprecated.in 7.0.MutableSet<Pair<V,Integer>>DoubleObjectHashMap. zipWithIndex()Deprecated.in 7.0.MutableSet<Pair<V,Integer>>FloatObjectHashMap. zipWithIndex()Deprecated.in 7.0.MutableSet<Pair<V,Integer>>IntObjectHashMap. zipWithIndex()Deprecated.in 7.0.MutableSet<Pair<V,Integer>>LongObjectHashMap. zipWithIndex()Deprecated.in 7.0.MutableSet<Pair<V,Integer>>ShortObjectHashMap. zipWithIndex()Deprecated.in 7.0.MutableSet<Pair<V,Integer>>SynchronizedByteObjectMap. zipWithIndex()Deprecated.in 7.0.MutableSet<Pair<V,Integer>>SynchronizedCharObjectMap. zipWithIndex()Deprecated.in 7.0.MutableSet<Pair<V,Integer>>SynchronizedDoubleObjectMap. zipWithIndex()Deprecated.in 7.0.MutableSet<Pair<V,Integer>>SynchronizedFloatObjectMap. zipWithIndex()Deprecated.in 7.0.MutableSet<Pair<V,Integer>>SynchronizedIntObjectMap. zipWithIndex()Deprecated.in 7.0.MutableSet<Pair<V,Integer>>SynchronizedLongObjectMap. zipWithIndex()Deprecated.in 7.0.MutableSet<Pair<V,Integer>>SynchronizedShortObjectMap. zipWithIndex()Deprecated.in 7.0.MutableSet<Pair<V,Integer>>UnmodifiableByteObjectMap. zipWithIndex()Deprecated.in 7.0.MutableSet<Pair<V,Integer>>UnmodifiableCharObjectMap. zipWithIndex()Deprecated.in 7.0.MutableSet<Pair<V,Integer>>UnmodifiableDoubleObjectMap. zipWithIndex()Deprecated.in 7.0.MutableSet<Pair<V,Integer>>UnmodifiableFloatObjectMap. zipWithIndex()Deprecated.in 7.0.MutableSet<Pair<V,Integer>>UnmodifiableIntObjectMap. zipWithIndex()Deprecated.in 7.0.MutableSet<Pair<V,Integer>>UnmodifiableLongObjectMap. zipWithIndex()Deprecated.in 7.0.MutableSet<Pair<V,Integer>>UnmodifiableShortObjectMap. zipWithIndex()Deprecated.in 7.0. -
Uses of MutableSet in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableSet Modifier and Type Method Description MutableSet<Map.Entry<K,V>>OrderedMapAdapter. entrySet()MutableSet<K>OrderedMapAdapter. keySet()MutableSet<V>UnmodifiableMutableOrderedMap. toSet() -
Uses of MutableSet in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableSet Modifier and Type Method Description MutableSet<Map.Entry<K,V>>SortedMapAdapter. entrySet()MutableSet<Map.Entry<K,V>>SynchronizedSortedMap. entrySet()MutableSet<Map.Entry<K,V>>TreeSortedMap. entrySet()MutableSet<Map.Entry<K,V>>UnmodifiableTreeMap. entrySet()MutableSet<K>SortedMapAdapter. keySet()MutableSet<K>SynchronizedSortedMap. keySet()MutableSet<K>TreeSortedMap. keySet()MutableSet<K>UnmodifiableTreeMap. keySet()MutableSet<V>UnmodifiableTreeMap. toSet() -
Uses of MutableSet in org.eclipse.collections.impl.multimap.set
Methods in org.eclipse.collections.impl.multimap.set that return MutableSet Modifier and Type Method Description MutableSet<V>SynchronizedSetMultimap. get(K key)MutableSet<V>SynchronizedSetMultimap. getIfAbsentPutAll(K key, Iterable<? extends V> values)MutableSet<V>SynchronizedSetMultimap. removeAll(Object key)MutableSet<V>SynchronizedSetMultimap. replaceValues(K key, Iterable<? extends V> values) -
Uses of MutableSet in org.eclipse.collections.impl.partition.set
Methods in org.eclipse.collections.impl.partition.set that return MutableSet Modifier and Type Method Description MutableSet<T>PartitionUnifiedSet. getRejected()MutableSet<T>PartitionUnifiedSet. getSelected() -
Uses of MutableSet in org.eclipse.collections.impl.partition.set.strategy
Methods in org.eclipse.collections.impl.partition.set.strategy that return MutableSet Modifier and Type Method Description MutableSet<T>PartitionUnifiedSetWithHashingStrategy. getRejected()MutableSet<T>PartitionUnifiedSetWithHashingStrategy. getSelected() -
Uses of MutableSet in org.eclipse.collections.impl.set
Classes in org.eclipse.collections.impl.set that implement MutableSet Modifier and Type Class Description classAbstractUnifiedSet<T>Methods in org.eclipse.collections.impl.set that return MutableSet Modifier and Type Method Description MutableSet<T>AbstractUnifiedSet. asSynchronized()MutableSet<T>AbstractUnifiedSet. asUnmodifiable()abstract MutableSet<T>AbstractUnifiedSet. clone()MutableSet<T>AbstractUnifiedSet. difference(SetIterable<? extends T> subtrahendSet)MutableSet<T>AbstractUnifiedSet. intersect(SetIterable<? extends T> set)abstract MutableSet<T>AbstractUnifiedSet. newEmpty(int size)MutableSet<UnsortedSetIterable<T>>AbstractUnifiedSet. powerSet()MutableSet<T>AbstractUnifiedSet. symmetricDifference(SetIterable<? extends T> setB)MutableSet<T>AbstractUnifiedSet. union(SetIterable<? extends T> set)<S> MutableSet<Pair<T,S>>AbstractUnifiedSet. zip(Iterable<S> that)Deprecated.in 6.0.MutableSet<Pair<T,Integer>>AbstractUnifiedSet. zipWithIndex()Deprecated.in 6.0. -
Uses of MutableSet in org.eclipse.collections.impl.set.fixed
Methods in org.eclipse.collections.impl.set.fixed that return MutableSet Modifier and Type Method Description <T> MutableSet<T>FixedSizeSetFactoryImpl. fromStream(Stream<? extends T> stream)<T> MutableSet<T>FixedSizeSetFactoryImpl. ofAll(Iterable<? extends T> items)<T> MutableSet<T>FixedSizeSetFactoryImpl. withAll(Iterable<? extends T> items) -
Uses of MutableSet in org.eclipse.collections.impl.set.mutable
Classes in org.eclipse.collections.impl.set.mutable that implement MutableSet Modifier and Type Class Description classAbstractMutableSet<T>classMultiReaderUnifiedSet<T>MultiReadUnifiedSet provides a thread-safe wrapper around a UnifiedSet, using a ReentrantReadWriteLock.classSetAdapter<T>This class provides a MutableSet wrapper around a JDK Collections Set interface instance.classSynchronizedMutableSet<T>A synchronized view of aMutableSet.classUnifiedSet<T>classUnmodifiableMutableSet<T>An unmodifiable view of a list.Methods in org.eclipse.collections.impl.set.mutable that return MutableSet Modifier and Type Method Description static <E> MutableSet<E>SetAdapter. adapt(Set<E> set)MutableSet<T>AbstractMutableSet. asSynchronized()MutableSet<T>MultiReaderUnifiedSet. asSynchronized()MutableSet<T>SetAdapter. asSynchronized()MutableSet<T>SynchronizedMutableSet. asSynchronized()MutableSet<T>UnmodifiableMutableSet. asSynchronized()MutableSet<T>AbstractMutableSet. asUnmodifiable()MutableSet<T>MultiReaderUnifiedSet. asUnmodifiable()MutableSet<T>SetAdapter. asUnmodifiable()MutableSet<T>SynchronizedMutableSet. asUnmodifiable()MutableSet<T>UnmodifiableMutableSet. asUnmodifiable()MutableSet<T>AbstractMutableSet. clone()MutableSet<T>MultiReaderUnifiedSet. clone()MutableSet<T>SetAdapter. clone()MutableSet<T>SynchronizedMutableSet. clone()<V> MutableSet<V>AbstractMutableSet. collect(Function<? super T,? extends V> function)<V> MutableSet<V>MultiReaderUnifiedSet. collect(Function<? super T,? extends V> function)<V> MutableSet<V>SetAdapter. collect(Function<? super T,? extends V> function)<V> MutableSet<V>SynchronizedMutableSet. collect(Function<? super T,? extends V> function)<V> MutableSet<V>UnmodifiableMutableSet. collect(Function<? super T,? extends V> function)<V> MutableSet<V>AbstractMutableSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableSet<V>MultiReaderUnifiedSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableSet<V>SetAdapter. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableSet<V>SynchronizedMutableSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> MutableSet<V>UnmodifiableMutableSet. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<P, V> MutableSet<V>AbstractMutableSet. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)<P, V> MutableSet<V>MultiReaderUnifiedSet. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)<P, V> MutableSet<V>SetAdapter. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)<P, V> MutableSet<V>SynchronizedMutableSet. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)<P, A> MutableSet<A>UnmodifiableMutableSet. collectWith(Function2<? super T,? super P,? extends A> function, P parameter)MutableSet<T>AbstractMutableSet. difference(SetIterable<? extends T> subtrahendSet)MutableSet<T>MultiReaderUnifiedSet. difference(SetIterable<? extends T> subtrahendSet)MutableSet<T>SetAdapter. difference(SetIterable<? extends T> subtrahendSet)MutableSet<T>SynchronizedMutableSet. difference(SetIterable<? extends T> subtrahendSet)MutableSet<T>UnmodifiableMutableSet. difference(SetIterable<? extends T> subtrahendSet)<T> MutableSet<T>MutableSetFactoryImpl. empty()<V> MutableSet<V>AbstractMutableSet. flatCollect(Function<? super T,? extends Iterable<V>> function)<V> MutableSet<V>MultiReaderUnifiedSet. flatCollect(Function<? super T,? extends Iterable<V>> function)<V> MutableSet<V>SetAdapter. flatCollect(Function<? super T,? extends Iterable<V>> function)<V> MutableSet<V>SynchronizedMutableSet. flatCollect(Function<? super T,? extends Iterable<V>> function)<V> MutableSet<V>UnmodifiableMutableSet. flatCollect(Function<? super T,? extends Iterable<V>> function)<T> MutableSet<T>MutableSetFactoryImpl. fromStream(Stream<? extends T> stream)MutableSet<T>AbstractMutableSet. intersect(SetIterable<? extends T> set)MutableSet<T>MultiReaderUnifiedSet. intersect(SetIterable<? extends T> set)MutableSet<T>SetAdapter. intersect(SetIterable<? extends T> set)MutableSet<T>SynchronizedMutableSet. intersect(SetIterable<? extends T> set)MutableSet<T>UnmodifiableMutableSet. intersect(SetIterable<? extends T> set)MutableSet<T>AbstractMutableSet. newEmpty()MutableSet<T>MultiReaderUnifiedSet. newEmpty()MutableSet<T>SetAdapter. newEmpty()Deprecated.useUnifiedSet.newSet()instead (inlineable)MutableSet<T>SynchronizedMutableSet. newEmpty()MutableSet<T>UnmodifiableMutableSet. newEmpty()MutableSet<UnsortedSetIterable<T>>AbstractMutableSet. powerSet()MutableSet<UnsortedSetIterable<T>>MultiReaderUnifiedSet. powerSet()MutableSet<UnsortedSetIterable<T>>SetAdapter. powerSet()MutableSet<UnsortedSetIterable<T>>SynchronizedMutableSet. powerSet()MutableSet<UnsortedSetIterable<T>>UnmodifiableMutableSet. powerSet()MutableSet<T>AbstractMutableSet. reject(Predicate<? super T> predicate)MutableSet<T>MultiReaderUnifiedSet. reject(Predicate<? super T> predicate)MutableSet<T>SetAdapter. reject(Predicate<? super T> predicate)MutableSet<T>SynchronizedMutableSet. reject(Predicate<? super T> predicate)MutableSet<T>UnmodifiableMutableSet. reject(Predicate<? super T> predicate)<P> MutableSet<T>AbstractMutableSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSet<T>MultiReaderUnifiedSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSet<T>SetAdapter. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSet<T>SynchronizedMutableSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSet<T>UnmodifiableMutableSet. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)MutableSet<T>AbstractMutableSet. select(Predicate<? super T> predicate)MutableSet<T>MultiReaderUnifiedSet. select(Predicate<? super T> predicate)MutableSet<T>SetAdapter. select(Predicate<? super T> predicate)MutableSet<T>SynchronizedMutableSet. select(Predicate<? super T> predicate)MutableSet<T>UnmodifiableMutableSet. select(Predicate<? super T> predicate)<S> MutableSet<S>AbstractMutableSet. selectInstancesOf(Class<S> clazz)<S> MutableSet<S>MultiReaderUnifiedSet. selectInstancesOf(Class<S> clazz)<S> MutableSet<S>SetAdapter. selectInstancesOf(Class<S> clazz)<S> MutableSet<S>SynchronizedMutableSet. selectInstancesOf(Class<S> clazz)<S> MutableSet<S>UnmodifiableMutableSet. selectInstancesOf(Class<S> clazz)<P> MutableSet<T>AbstractMutableSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSet<T>MultiReaderUnifiedSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSet<T>SetAdapter. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSet<T>SynchronizedMutableSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> MutableSet<T>UnmodifiableMutableSet. selectWith(Predicate2<? super T,? super P> predicate, P parameter)MutableSet<T>AbstractMutableSet. symmetricDifference(SetIterable<? extends T> setB)MutableSet<T>MultiReaderUnifiedSet. symmetricDifference(SetIterable<? extends T> setB)MutableSet<T>SetAdapter. symmetricDifference(SetIterable<? extends T> setB)MutableSet<T>SynchronizedMutableSet. symmetricDifference(SetIterable<? extends T> setB)MutableSet<T>UnmodifiableMutableSet. symmetricDifference(SetIterable<? extends T> setB)MutableSet<T>AbstractMutableSet. tap(Procedure<? super T> procedure)MutableSet<T>MultiReaderUnifiedSet. tap(Procedure<? super T> procedure)MutableSet<T>SetAdapter. tap(Procedure<? super T> procedure)MutableSet<T>SynchronizedMutableSet. tap(Procedure<? super T> procedure)MutableSet<T>UnifiedSet. tap(Procedure<? super T> procedure)MutableSet<T>UnmodifiableMutableSet. tap(Procedure<? super T> procedure)MutableSet<T>AbstractMutableSet. union(SetIterable<? extends T> set)MutableSet<T>MultiReaderUnifiedSet. union(SetIterable<? extends T> set)MutableSet<T>SetAdapter. union(SetIterable<? extends T> set)MutableSet<T>SynchronizedMutableSet. union(SetIterable<? extends T> set)MutableSet<T>UnmodifiableMutableSet. union(SetIterable<? extends T> set)MutableSet<T>MultiReaderUnifiedSet. with(T element)<T> MutableSet<T>MutableSetFactoryImpl. with(T... items)MutableSet<T>SynchronizedMutableSet. with(T element)MutableSet<T>UnmodifiableMutableSet. with(T element)MutableSet<T>MultiReaderUnifiedSet. withAll(Iterable<? extends T> elements)<T> MutableSet<T>MutableSetFactoryImpl. withAll(Iterable<? extends T> items)MutableSet<T>SynchronizedMutableSet. withAll(Iterable<? extends T> elements)MutableSet<T>UnmodifiableMutableSet. withAll(Iterable<? extends T> elements)<T> MutableSet<T>MutableSetFactoryImpl. withInitialCapacity(int capacity)MutableSet<T>MultiReaderUnifiedSet. without(T element)MutableSet<T>SynchronizedMutableSet. without(T element)MutableSet<T>UnmodifiableMutableSet. without(T element)MutableSet<T>MultiReaderUnifiedSet. withoutAll(Iterable<? extends T> elements)MutableSet<T>SynchronizedMutableSet. withoutAll(Iterable<? extends T> elements)MutableSet<T>UnmodifiableMutableSet. withoutAll(Iterable<? extends T> elements)<S> MutableSet<Pair<T,S>>AbstractMutableSet. zip(Iterable<S> that)Deprecated.in 6.0.<S> MutableSet<Pair<T,S>>MultiReaderUnifiedSet. zip(Iterable<S> that)Deprecated.in 6.0.<S> MutableSet<Pair<T,S>>SetAdapter. zip(Iterable<S> that)Deprecated.in 6.0.<S> MutableSet<Pair<T,S>>SynchronizedMutableSet. zip(Iterable<S> that)Deprecated.in 6.0.<S> MutableSet<Pair<T,S>>UnmodifiableMutableSet. zip(Iterable<S> that)Deprecated.in 6.0.MutableSet<Pair<T,Integer>>AbstractMutableSet. zipWithIndex()Deprecated.in 6.0.MutableSet<Pair<T,Integer>>MultiReaderUnifiedSet. zipWithIndex()Deprecated.in 6.0.MutableSet<Pair<T,Integer>>SetAdapter. zipWithIndex()Deprecated.in 6.0.MutableSet<Pair<T,Integer>>SynchronizedMutableSet. zipWithIndex()Deprecated.in 6.0.MutableSet<Pair<T,Integer>>UnmodifiableMutableSet. zipWithIndex()Deprecated.in 6.0.Method parameters in org.eclipse.collections.impl.set.mutable with type arguments of type MutableSet Modifier and Type Method Description voidMultiReaderUnifiedSet. withReadLockAndDelegate(Procedure<? super MutableSet<T>> procedure)voidMultiReaderUnifiedSet. withWriteLockAndDelegate(Procedure<? super MutableSet<T>> procedure) -
Uses of MutableSet in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive that return MutableSet Modifier and Type Method Description <V> MutableSet<V>BooleanHashSet. collect(BooleanToObjectFunction<? extends V> function)<V> MutableSet<V>ByteHashSet. collect(ByteToObjectFunction<? extends V> function)<V> MutableSet<V>CharHashSet. collect(CharToObjectFunction<? extends V> function)<V> MutableSet<V>DoubleHashSet. collect(DoubleToObjectFunction<? extends V> function)<V> MutableSet<V>FloatHashSet. collect(FloatToObjectFunction<? extends V> function)<V> MutableSet<V>IntHashSet. collect(IntToObjectFunction<? extends V> function)<V> MutableSet<V>LongHashSet. collect(LongToObjectFunction<? extends V> function)<V> MutableSet<V>ShortHashSet. collect(ShortToObjectFunction<? extends V> function)<V> MutableSet<V>SynchronizedBooleanSet. collect(BooleanToObjectFunction<? extends V> function)<V> MutableSet<V>SynchronizedByteSet. collect(ByteToObjectFunction<? extends V> function)<V> MutableSet<V>SynchronizedCharSet. collect(CharToObjectFunction<? extends V> function)<V> MutableSet<V>SynchronizedDoubleSet. collect(DoubleToObjectFunction<? extends V> function)<V> MutableSet<V>SynchronizedFloatSet. collect(FloatToObjectFunction<? extends V> function)<V> MutableSet<V>SynchronizedIntSet. collect(IntToObjectFunction<? extends V> function)<V> MutableSet<V>SynchronizedLongSet. collect(LongToObjectFunction<? extends V> function)<V> MutableSet<V>SynchronizedShortSet. collect(ShortToObjectFunction<? extends V> function)<V> MutableSet<V>UnmodifiableBooleanSet. collect(BooleanToObjectFunction<? extends V> function)<V> MutableSet<V>UnmodifiableByteSet. collect(ByteToObjectFunction<? extends V> function)<V> MutableSet<V>UnmodifiableCharSet. collect(CharToObjectFunction<? extends V> function)<V> MutableSet<V>UnmodifiableDoubleSet. collect(DoubleToObjectFunction<? extends V> function)<V> MutableSet<V>UnmodifiableFloatSet. collect(FloatToObjectFunction<? extends V> function)<V> MutableSet<V>UnmodifiableIntSet. collect(IntToObjectFunction<? extends V> function)<V> MutableSet<V>UnmodifiableLongSet. collect(LongToObjectFunction<? extends V> function)<V> MutableSet<V>UnmodifiableShortSet. collect(ShortToObjectFunction<? extends V> function) -
Uses of MutableSet in org.eclipse.collections.impl.set.strategy.mutable
Classes in org.eclipse.collections.impl.set.strategy.mutable that implement MutableSet Modifier and Type Class Description classUnifiedSetWithHashingStrategy<T>Methods in org.eclipse.collections.impl.set.strategy.mutable that return MutableSet Modifier and Type Method Description <T> MutableSet<T>MutableHashingStrategySetFactoryImpl. of(HashingStrategy<? super T> hashingStrategy)<T> MutableSet<T>MutableHashingStrategySetFactoryImpl. of(HashingStrategy<? super T> hashingStrategy, T... items)<T> MutableSet<T>MutableHashingStrategySetFactoryImpl. ofAll(HashingStrategy<? super T> hashingStrategy, Iterable<? extends T> items)<T> MutableSet<T>MutableHashingStrategySetFactoryImpl. ofInitialCapacity(HashingStrategy<? super T> hashingStrategy, int capacity)<T> MutableSet<T>MutableHashingStrategySetFactoryImpl. with(HashingStrategy<? super T> hashingStrategy)<T> MutableSet<T>MutableHashingStrategySetFactoryImpl. with(HashingStrategy<? super T> hashingStrategy, T... items)<T> MutableSet<T>MutableHashingStrategySetFactoryImpl. withAll(HashingStrategy<? super T> hashingStrategy, Iterable<? extends T> items)<T> MutableSet<T>MutableHashingStrategySetFactoryImpl. withInitialCapacity(HashingStrategy<? super T> hashingStrategy, int capacity) -
Uses of MutableSet in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable that return MutableSet Modifier and Type Method Description MutableSet<T>ArrayStack. toSet()MutableSet<T>SynchronizedStack. toSet()MutableSet<T>UnmodifiableStack. toSet() -
Uses of MutableSet in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return MutableSet Modifier and Type Method Description static MutableSet<Character>StringIterate. asLowercaseSet(String string)Deprecated.in 3.0.static MutableSet<Character>StringIterate. asUppercaseSet(String string)Deprecated.in 3.0.static MutableSet<String>StringIterate. csvTokensToSet(String string)Deprecated.in 3.0.static MutableSet<String>StringIterate. tokensToSet(String string, String separator)Converts a string of tokens to aMutableSet.static MutableSet<Character>StringIterate. toLowercaseSet(String string)static MutableSet<Character>StringIterate. toSet(String string)static MutableSet<Character>StringIterate. toUppercaseSet(String string) -
Uses of MutableSet in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return MutableSet Modifier and Type Method Description static <E> MutableSet<E>SetIterables. difference(SetIterable<? extends E> minuendSet, SetIterable<? extends E> subtrahendSet)static <E> MutableSet<E>SetIterables. intersect(SetIterable<? extends E> setA, SetIterable<? extends E> setB)static <T> MutableSet<MutableSet<T>>SetIterables. powerSet(Set<T> set)static <T> MutableSet<MutableSet<T>>SetIterables. powerSet(UnifiedSetWithHashingStrategy<T> set)static <E> MutableSet<E>SetIterables. symmetricDifference(SetIterable<? extends E> setA, SetIterable<? extends E> setB)static <E> MutableSet<E>SetIterables. union(SetIterable<? extends E> setA, SetIterable<? extends E> setB)Methods in org.eclipse.collections.impl.utility.internal that return types with arguments of type MutableSet Modifier and Type Method Description static <T> MutableSet<MutableSet<T>>SetIterables. powerSet(Set<T> set)static <T> MutableSet<MutableSet<T>>SetIterables. powerSet(UnifiedSetWithHashingStrategy<T> set)