Uses of Interface
org.eclipse.collections.api.set.SetIterable
-
Packages that use SetIterable Package Description 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.multimap This package contains interfaces forMultimap.org.eclipse.collections.api.multimap.set This package contains interfaces forSetMultimap.org.eclipse.collections.api.partition.set This package contains interfaces forPartitionSet.org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet.org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction,Predicate,SerializableComparatorandProcedure.org.eclipse.collections.impl.multimap This package contains implementations of theMultimapinterface.org.eclipse.collections.impl.set org.eclipse.collections.impl.set.fixed This package contains implementations ofFixedSizeSet.org.eclipse.collections.impl.set.immutable This package contains the implementations ofImmutableSet.org.eclipse.collections.impl.set.mutable This package contains implementations ofMutableSet.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet.org.eclipse.collections.impl.set.strategy.immutable This package contains implementations of immutable sets with user definedHashingStrategys.org.eclipse.collections.impl.set.strategy.mutable This package contains implementations of sets with user definedHashingStrategys.org.eclipse.collections.impl.utility.internal This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections. -
-
Uses of SetIterable in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return SetIterable Modifier and Type Method Description SetIterable<T>Bag. selectUnique()Returns a set containing all elements of the bag that have exactly one occurrence.SetIterable<Pair<T,java.lang.Integer>>Bag. zipWithIndex() -
Uses of SetIterable in org.eclipse.collections.api.bimap
Methods in org.eclipse.collections.api.bimap that return SetIterable Modifier and Type Method Description SetIterable<V>BiMap. reject(Predicate<? super V> predicate)<P> SetIterable<V>BiMap. rejectWith(Predicate2<? super V,? super P> predicate, P parameter)SetIterable<V>BiMap. select(Predicate<? super V> predicate)<S> SetIterable<S>BiMap. selectInstancesOf(java.lang.Class<S> clazz)<P> SetIterable<V>BiMap. selectWith(Predicate2<? super V,? super P> predicate, P parameter)<S> SetIterable<Pair<V,S>>BiMap. zip(java.lang.Iterable<S> that)Deprecated.in 8.0.SetIterable<Pair<V,java.lang.Integer>>BiMap. zipWithIndex()Deprecated.in 8.0. -
Uses of SetIterable in org.eclipse.collections.api.multimap
Methods in org.eclipse.collections.api.multimap that return SetIterable Modifier and Type Method Description SetIterable<K>Multimap. keySet()Returns an unmodifiableSetIterableof keys with O(1) complexity. -
Uses of SetIterable in org.eclipse.collections.api.multimap.set
Methods in org.eclipse.collections.api.multimap.set that return SetIterable Modifier and Type Method Description SetIterable<V>SetMultimap. get(K key) -
Uses of SetIterable in org.eclipse.collections.api.partition.set
Methods in org.eclipse.collections.api.partition.set that return SetIterable Modifier and Type Method Description SetIterable<T>PartitionSet. getRejected()SetIterable<T>PartitionSet. getSelected() -
Uses of SetIterable in org.eclipse.collections.api.set
Subinterfaces of SetIterable 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.interfaceImmutableSet<T>ImmutableSet is the non-modifiable equivalent interface toMutableSet.interfaceImmutableSetIterable<T>interfaceMultiReaderSet<T>A MultiReaderSet provides thread-safe iteration for a set through methodswithReadLockAndDelegate()andwithWriteLockAndDelegate().interfaceMutableSet<T>A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol.interfaceMutableSetIterable<T>interfaceUnsortedSetIterable<T>An iterable whose items are unique.Methods in org.eclipse.collections.api.set that return SetIterable Modifier and Type Method Description SetIterable<T>SetIterable. difference(SetIterable<? extends T> subtrahendSet)Returns the set of all members ofthisthat are not members ofsubtrahendSet.SetIterable<T>SetIterable. intersect(SetIterable<? extends T> set)Returns the set of all objects that are members of boththisandset.SetIterable<T>SetIterable. reject(Predicate<? super T> predicate)<P> SetIterable<T>SetIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)SetIterable<T>SetIterable. select(Predicate<? super T> predicate)<S> SetIterable<S>SetIterable. selectInstancesOf(java.lang.Class<S> clazz)<P> SetIterable<T>SetIterable. selectWith(Predicate2<? super T,? super P> predicate, P parameter)SetIterable<T>SetIterable. symmetricDifference(SetIterable<? extends T> setB)Returns the set of all objects that are a member of exactly one ofthisandsetB(elements which are in one of the sets, but not in both).SetIterable<T>SetIterable. tap(Procedure<? super T> procedure)SetIterable<T>SetIterable. union(SetIterable<? extends T> set)Returns the set of all objects that are a member ofthisorsetor both.SetIterable<Pair<T,java.lang.Integer>>SetIterable. zipWithIndex()Deprecated.in 6.0.Methods in org.eclipse.collections.api.set with parameters of type SetIterable Modifier and Type Method Description <B> LazyIterable<Pair<T,B>>SetIterable. cartesianProduct(SetIterable<B> set)Returns the set whose members are all possible ordered pairs (a, b) where a is a member ofthisand b is a member ofset.ImmutableSet<T>ImmutableSet. difference(SetIterable<? extends T> subtrahendSet)MutableSet<T>MutableSet. difference(SetIterable<? extends T> subtrahendSet)SetIterable<T>SetIterable. difference(SetIterable<? extends T> subtrahendSet)Returns the set of all members ofthisthat are not members ofsubtrahendSet.UnsortedSetIterable<T>UnsortedSetIterable. difference(SetIterable<? extends T> subtrahendSet)<R extends java.util.Set<T>>
RSetIterable. differenceInto(SetIterable<? extends T> subtrahendSet, R targetSet)Same asdifference(SetIterable)but adds all the objects totargetSetand returns it.ImmutableSet<T>ImmutableSet. intersect(SetIterable<? extends T> set)MutableSet<T>MutableSet. intersect(SetIterable<? extends T> set)SetIterable<T>SetIterable. intersect(SetIterable<? extends T> set)Returns the set of all objects that are members of boththisandset.UnsortedSetIterable<T>UnsortedSetIterable. intersect(SetIterable<? extends T> set)<R extends java.util.Set<T>>
RSetIterable. intersectInto(SetIterable<? extends T> set, R targetSet)Same asintersect(SetIterable)but adds all the objects totargetSetand returns it.booleanSetIterable. isProperSubsetOf(SetIterable<? extends T> candidateSuperset)Returns true if all the members ofthisare also members ofcandidateSupersetand the two sets are not equal.booleanSetIterable. isSubsetOf(SetIterable<? extends T> candidateSuperset)Returns true if all the members ofthisare also members ofcandidateSuperset.ImmutableSet<T>ImmutableSet. symmetricDifference(SetIterable<? extends T> setB)MutableSet<T>MutableSet. symmetricDifference(SetIterable<? extends T> setB)SetIterable<T>SetIterable. symmetricDifference(SetIterable<? extends T> setB)Returns the set of all objects that are a member of exactly one ofthisandsetB(elements which are in one of the sets, but not in both).UnsortedSetIterable<T>UnsortedSetIterable. symmetricDifference(SetIterable<? extends T> setB)<R extends java.util.Set<T>>
RSetIterable. symmetricDifferenceInto(SetIterable<? extends T> set, R targetSet)Same assymmetricDifference(SetIterable)but adds all the objects totargetSetand returns it.ImmutableSet<T>ImmutableSet. union(SetIterable<? extends T> set)MutableSet<T>MutableSet. union(SetIterable<? extends T> set)SetIterable<T>SetIterable. union(SetIterable<? extends T> set)Returns the set of all objects that are a member ofthisorsetor both.UnsortedSetIterable<T>UnsortedSetIterable. union(SetIterable<? extends T> set)<R extends java.util.Set<T>>
RSetIterable. unionInto(SetIterable<? extends T> set, R targetSet)Same asunion(SetIterable)but adds all the objects totargetSetand returns it. -
Uses of SetIterable in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return SetIterable Modifier and Type Method Description <V> SetIterable<V>BooleanSet. collect(BooleanToObjectFunction<? extends V> function)<V> SetIterable<V>ByteSet. collect(ByteToObjectFunction<? extends V> function)<V> SetIterable<V>CharSet. collect(CharToObjectFunction<? extends V> function)<V> SetIterable<V>DoubleSet. collect(DoubleToObjectFunction<? extends V> function)<V> SetIterable<V>FloatSet. collect(FloatToObjectFunction<? extends V> function)<V> SetIterable<V>IntSet. collect(IntToObjectFunction<? extends V> function)<V> SetIterable<V>LongSet. collect(LongToObjectFunction<? extends V> function)<V> SetIterable<V>ShortSet. collect(ShortToObjectFunction<? extends V> function) -
Uses of SetIterable in org.eclipse.collections.api.set.sorted
Subinterfaces of SetIterable in org.eclipse.collections.api.set.sorted Modifier and Type Interface Description interfaceImmutableSortedSet<T>ImmutableSortedSet is the non-modifiable equivalent interface toMutableSortedSet.interfaceMutableSortedSet<T>A MutableSortedSet is an implementation of a JCF SortedSet which provides methods matching the Smalltalk Collection protocol.interfaceSortedSetIterable<T>An iterable whose items are unique and sorted by some comparator or their natural ordering.Methods in org.eclipse.collections.api.set.sorted with parameters of type SetIterable Modifier and Type Method Description ImmutableSortedSet<T>ImmutableSortedSet. difference(SetIterable<? extends T> subtrahendSet)MutableSortedSet<T>MutableSortedSet. difference(SetIterable<? extends T> subtrahendSet)SortedSetIterable<T>SortedSetIterable. difference(SetIterable<? extends T> subtrahendSet)Returns the set of all members ofthisthat are not members ofsubtrahendSet.ImmutableSortedSet<T>ImmutableSortedSet. intersect(SetIterable<? extends T> set)MutableSortedSet<T>MutableSortedSet. intersect(SetIterable<? extends T> set)SortedSetIterable<T>SortedSetIterable. intersect(SetIterable<? extends T> set)Returns the set of all objects that are members of boththisandset.ImmutableSortedSet<T>ImmutableSortedSet. symmetricDifference(SetIterable<? extends T> setB)MutableSortedSet<T>MutableSortedSet. symmetricDifference(SetIterable<? extends T> setB)SortedSetIterable<T>SortedSetIterable. symmetricDifference(SetIterable<? extends T> setB)Returns the set of all objects that are a member of exactly one ofthisandsetB(elements which are in one of the sets, but not in both).ImmutableSortedSet<T>ImmutableSortedSet. union(SetIterable<? extends T> set)MutableSortedSet<T>MutableSortedSet. union(SetIterable<? extends T> set)SortedSetIterable<T>SortedSetIterable. union(SetIterable<? extends T> set)Returns the set of all objects that are a member ofthisorsetor both. -
Uses of SetIterable in org.eclipse.collections.impl.block.factory
Fields in org.eclipse.collections.impl.block.factory declared as SetIterable Modifier and Type Field Description private SetIterable<?>Predicates.InSetIterablePredicate. setIterableprivate SetIterable<?>Predicates.NotInSetIterablePredicate. setIterableConstructors in org.eclipse.collections.impl.block.factory with parameters of type SetIterable Constructor Description InSetIterablePredicate(SetIterable<?> setIterable)NotInSetIterablePredicate(SetIterable<?> setIterable) -
Uses of SetIterable in org.eclipse.collections.impl.multimap
Methods in org.eclipse.collections.impl.multimap that return SetIterable Modifier and Type Method Description SetIterable<K>AbstractImmutableMultimap. keySet()SetIterable<K>AbstractMutableMultimap. keySet()SetIterable<K>AbstractSynchronizedMultimap. keySet() -
Uses of SetIterable in org.eclipse.collections.impl.set
Classes in org.eclipse.collections.impl.set that implement SetIterable Modifier and Type Class Description classAbstractUnifiedSet<T>Methods in org.eclipse.collections.impl.set with parameters of type SetIterable Modifier and Type Method Description <B> LazyIterable<Pair<T,B>>AbstractUnifiedSet. cartesianProduct(SetIterable<B> set)MutableSet<T>AbstractUnifiedSet. difference(SetIterable<? extends T> subtrahendSet)<R extends java.util.Set<T>>
RAbstractUnifiedSet. differenceInto(SetIterable<? extends T> subtrahendSet, R targetSet)MutableSet<T>AbstractUnifiedSet. intersect(SetIterable<? extends T> set)<R extends java.util.Set<T>>
RAbstractUnifiedSet. intersectInto(SetIterable<? extends T> set, R targetSet)booleanAbstractUnifiedSet. isProperSubsetOf(SetIterable<? extends T> candidateSuperset)booleanAbstractUnifiedSet. isSubsetOf(SetIterable<? extends T> candidateSuperset)MutableSet<T>AbstractUnifiedSet. symmetricDifference(SetIterable<? extends T> setB)<R extends java.util.Set<T>>
RAbstractUnifiedSet. symmetricDifferenceInto(SetIterable<? extends T> set, R targetSet)MutableSet<T>AbstractUnifiedSet. union(SetIterable<? extends T> set)<R extends java.util.Set<T>>
RAbstractUnifiedSet. unionInto(SetIterable<? extends T> set, R targetSet) -
Uses of SetIterable in org.eclipse.collections.impl.set.fixed
Classes in org.eclipse.collections.impl.set.fixed that implement SetIterable Modifier and Type Class Description (package private) classAbstractMemoryEfficientMutableSet<T>(package private) classDoubletonSet<T>(package private) classEmptySet<T>This class is a memory efficient list with no elements.(package private) classQuadrupletonSet<T>(package private) classSingletonSet<T>(package private) classTripletonSet<T> -
Uses of SetIterable in org.eclipse.collections.impl.set.immutable
Classes in org.eclipse.collections.impl.set.immutable that implement SetIterable Modifier and Type Class Description classAbstractImmutableSet<T>This class is the parent class for all ImmutableSets.(package private) classImmutableDoubletonSet<T>(package private) classImmutableEmptySet<T>This is a zero elementImmutableSetwhich is created by calling the Sets.immutable.empty() method.(package private) classImmutableQuadrupletonSet<T>(package private) classImmutableSingletonSet<T>(package private) classImmutableTripletonSet<T>(package private) classImmutableUnifiedSet<T>Methods in org.eclipse.collections.impl.set.immutable with parameters of type SetIterable Modifier and Type Method Description <B> LazyIterable<Pair<T,B>>AbstractImmutableSet. cartesianProduct(SetIterable<B> set)ImmutableSet<T>AbstractImmutableSet. difference(SetIterable<? extends T> subtrahendSet)<R extends java.util.Set<T>>
RAbstractImmutableSet. differenceInto(SetIterable<? extends T> subtrahendSet, R targetSet)ImmutableSet<T>AbstractImmutableSet. intersect(SetIterable<? extends T> set)<R extends java.util.Set<T>>
RAbstractImmutableSet. intersectInto(SetIterable<? extends T> set, R targetSet)booleanAbstractImmutableSet. isProperSubsetOf(SetIterable<? extends T> candidateSuperset)booleanAbstractImmutableSet. isSubsetOf(SetIterable<? extends T> candidateSuperset)ImmutableSet<T>AbstractImmutableSet. symmetricDifference(SetIterable<? extends T> setB)<R extends java.util.Set<T>>
RAbstractImmutableSet. symmetricDifferenceInto(SetIterable<? extends T> set, R targetSet)ImmutableSet<T>AbstractImmutableSet. union(SetIterable<? extends T> set)<R extends java.util.Set<T>>
RAbstractImmutableSet. unionInto(SetIterable<? extends T> set, R targetSet) -
Uses of SetIterable in org.eclipse.collections.impl.set.mutable
Classes in org.eclipse.collections.impl.set.mutable that implement SetIterable Modifier and Type Class Description classAbstractMutableSet<T>classMultiReaderUnifiedSet<T>MultiReadUnifiedSet provides a thread-safe wrapper around a UnifiedSet, using a ReentrantReadWriteLock.(package private) static classMultiReaderUnifiedSet.UntouchableMutableSet<T>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 with parameters of type SetIterable Modifier and Type Method Description <B> LazyIterable<Pair<T,B>>AbstractMutableSet. cartesianProduct(SetIterable<B> set)<B> LazyIterable<Pair<T,B>>MultiReaderUnifiedSet. cartesianProduct(SetIterable<B> set)<B> LazyIterable<Pair<T,B>>MultiReaderUnifiedSet.UntouchableMutableSet. cartesianProduct(SetIterable<B> set)<B> LazyIterable<Pair<T,B>>SetAdapter. cartesianProduct(SetIterable<B> set)<B> LazyIterable<Pair<T,B>>SynchronizedMutableSet. cartesianProduct(SetIterable<B> set)<B> LazyIterable<Pair<T,B>>UnmodifiableMutableSet. cartesianProduct(SetIterable<B> set)MutableSet<T>AbstractMutableSet. difference(SetIterable<? extends T> subtrahendSet)MutableSet<T>MultiReaderUnifiedSet. difference(SetIterable<? extends T> subtrahendSet)MutableSet<T>MultiReaderUnifiedSet.UntouchableMutableSet. 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)<R extends java.util.Set<T>>
RAbstractMutableSet. differenceInto(SetIterable<? extends T> subtrahendSet, R targetSet)<R extends java.util.Set<T>>
RMultiReaderUnifiedSet. differenceInto(SetIterable<? extends T> subtrahendSet, R targetSet)<R extends java.util.Set<T>>
RMultiReaderUnifiedSet.UntouchableMutableSet. differenceInto(SetIterable<? extends T> subtrahendSet, R targetSet)<R extends java.util.Set<T>>
RSetAdapter. differenceInto(SetIterable<? extends T> subtrahendSet, R targetSet)<R extends java.util.Set<T>>
RSynchronizedMutableSet. differenceInto(SetIterable<? extends T> subtrahendSet, R targetSet)<R extends java.util.Set<T>>
RUnmodifiableMutableSet. differenceInto(SetIterable<? extends T> subtrahendSet, R targetSet)MutableSet<T>AbstractMutableSet. intersect(SetIterable<? extends T> set)MutableSet<T>MultiReaderUnifiedSet. intersect(SetIterable<? extends T> set)MutableSet<T>MultiReaderUnifiedSet.UntouchableMutableSet. 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)<R extends java.util.Set<T>>
RAbstractMutableSet. intersectInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RMultiReaderUnifiedSet. intersectInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RMultiReaderUnifiedSet.UntouchableMutableSet. intersectInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RSetAdapter. intersectInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RSynchronizedMutableSet. intersectInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RUnmodifiableMutableSet. intersectInto(SetIterable<? extends T> set, R targetSet)booleanAbstractMutableSet. isProperSubsetOf(SetIterable<? extends T> candidateSuperset)booleanMultiReaderUnifiedSet. isProperSubsetOf(SetIterable<? extends T> candidateSuperset)booleanMultiReaderUnifiedSet.UntouchableMutableSet. isProperSubsetOf(SetIterable<? extends T> candidateSuperset)booleanSetAdapter. isProperSubsetOf(SetIterable<? extends T> candidateSuperset)booleanSynchronizedMutableSet. isProperSubsetOf(SetIterable<? extends T> candidateSuperset)booleanUnmodifiableMutableSet. isProperSubsetOf(SetIterable<? extends T> candidateSuperset)booleanAbstractMutableSet. isSubsetOf(SetIterable<? extends T> candidateSuperset)booleanMultiReaderUnifiedSet. isSubsetOf(SetIterable<? extends T> candidateSuperset)booleanMultiReaderUnifiedSet.UntouchableMutableSet. isSubsetOf(SetIterable<? extends T> candidateSuperset)booleanSetAdapter. isSubsetOf(SetIterable<? extends T> candidateSuperset)booleanSynchronizedMutableSet. isSubsetOf(SetIterable<? extends T> candidateSuperset)booleanUnmodifiableMutableSet. isSubsetOf(SetIterable<? extends T> candidateSuperset)MutableSet<T>AbstractMutableSet. symmetricDifference(SetIterable<? extends T> setB)MutableSet<T>MultiReaderUnifiedSet. symmetricDifference(SetIterable<? extends T> setB)MutableSet<T>MultiReaderUnifiedSet.UntouchableMutableSet. 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)<R extends java.util.Set<T>>
RAbstractMutableSet. symmetricDifferenceInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RMultiReaderUnifiedSet. symmetricDifferenceInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RMultiReaderUnifiedSet.UntouchableMutableSet. symmetricDifferenceInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RSetAdapter. symmetricDifferenceInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RSynchronizedMutableSet. symmetricDifferenceInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RUnmodifiableMutableSet. symmetricDifferenceInto(SetIterable<? extends T> set, R targetSet)MutableSet<T>AbstractMutableSet. union(SetIterable<? extends T> set)MutableSet<T>MultiReaderUnifiedSet. union(SetIterable<? extends T> set)MutableSet<T>MultiReaderUnifiedSet.UntouchableMutableSet. 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)<R extends java.util.Set<T>>
RAbstractMutableSet. unionInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RMultiReaderUnifiedSet. unionInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RMultiReaderUnifiedSet.UntouchableMutableSet. unionInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RSetAdapter. unionInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RSynchronizedMutableSet. unionInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RUnmodifiableMutableSet. unionInto(SetIterable<? extends T> set, R targetSet) -
Uses of SetIterable in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement SetIterable Modifier and Type Class Description classBoxedMutableBooleanSetA boxed view of aMutableBooleanSet.classBoxedMutableByteSetA boxed view of aMutableByteSet.classBoxedMutableCharSetA boxed view of aMutableCharSet.classBoxedMutableDoubleSetA boxed view of aMutableDoubleSet.classBoxedMutableFloatSetA boxed view of aMutableFloatSet.classBoxedMutableIntSetA boxed view of aMutableIntSet.classBoxedMutableLongSetA boxed view of aMutableLongSet.classBoxedMutableShortSetA boxed view of aMutableShortSet. -
Uses of SetIterable in org.eclipse.collections.impl.set.sorted.immutable
Classes in org.eclipse.collections.impl.set.sorted.immutable that implement SetIterable Modifier and Type Class Description (package private) classAbstractImmutableSortedSet<T>This class is the parent class for all ImmutableSortedSets.(package private) classImmutableEmptySortedSet<T>This is a zero elementImmutableSortedSetwhich is created by calling the SortedSets.immutable.empty() method.(package private) classImmutableTreeSet<T>Methods in org.eclipse.collections.impl.set.sorted.immutable with parameters of type SetIterable Modifier and Type Method Description <B> LazyIterable<Pair<T,B>>AbstractImmutableSortedSet. cartesianProduct(SetIterable<B> set)ImmutableSortedSet<T>AbstractImmutableSortedSet. difference(SetIterable<? extends T> subtrahendSet)<R extends java.util.Set<T>>
RAbstractImmutableSortedSet. differenceInto(SetIterable<? extends T> subtrahendSet, R targetSet)ImmutableSortedSet<T>AbstractImmutableSortedSet. intersect(SetIterable<? extends T> set)<R extends java.util.Set<T>>
RAbstractImmutableSortedSet. intersectInto(SetIterable<? extends T> set, R targetSet)booleanAbstractImmutableSortedSet. isProperSubsetOf(SetIterable<? extends T> candidateSuperset)booleanAbstractImmutableSortedSet. isSubsetOf(SetIterable<? extends T> candidateSuperset)ImmutableSortedSet<T>AbstractImmutableSortedSet. symmetricDifference(SetIterable<? extends T> setB)<R extends java.util.Set<T>>
RAbstractImmutableSortedSet. symmetricDifferenceInto(SetIterable<? extends T> set, R targetSet)ImmutableSortedSet<T>AbstractImmutableSortedSet. union(SetIterable<? extends T> set)<R extends java.util.Set<T>>
RAbstractImmutableSortedSet. unionInto(SetIterable<? extends T> set, R targetSet) -
Uses of SetIterable in org.eclipse.collections.impl.set.sorted.mutable
Classes in org.eclipse.collections.impl.set.sorted.mutable that implement SetIterable Modifier and Type Class Description classSortedSetAdapter<T>This class provides a MutableSortedSet wrapper around a JDK Collections SortedSet interface instance.classSynchronizedSortedSet<T>A synchronized view of aMutableSortedSet.classTreeSortedSet<T>classUnmodifiableSortedSet<T>An unmodifiable view of a SortedSet.Methods in org.eclipse.collections.impl.set.sorted.mutable with parameters of type SetIterable Modifier and Type Method Description <B> LazyIterable<Pair<T,B>>SortedSetAdapter. cartesianProduct(SetIterable<B> set)<B> LazyIterable<Pair<T,B>>SynchronizedSortedSet. cartesianProduct(SetIterable<B> set)<B> LazyIterable<Pair<T,B>>TreeSortedSet. cartesianProduct(SetIterable<B> set)<B> LazyIterable<Pair<T,B>>UnmodifiableSortedSet. cartesianProduct(SetIterable<B> set)MutableSortedSet<T>SortedSetAdapter. difference(SetIterable<? extends T> subtrahendSet)MutableSortedSet<T>SynchronizedSortedSet. difference(SetIterable<? extends T> subtrahendSet)TreeSortedSet<T>TreeSortedSet. difference(SetIterable<? extends T> subtrahendSet)MutableSortedSet<T>UnmodifiableSortedSet. difference(SetIterable<? extends T> subtrahendSet)<R extends java.util.Set<T>>
RSortedSetAdapter. differenceInto(SetIterable<? extends T> subtrahendSet, R targetSet)<R extends java.util.Set<T>>
RSynchronizedSortedSet. differenceInto(SetIterable<? extends T> subtrahendSet, R targetSet)<R extends java.util.Set<T>>
RTreeSortedSet. differenceInto(SetIterable<? extends T> subtrahendSet, R targetSet)<R extends java.util.Set<T>>
RUnmodifiableSortedSet. differenceInto(SetIterable<? extends T> subtrahendSet, R targetSet)MutableSortedSet<T>SortedSetAdapter. intersect(SetIterable<? extends T> set)MutableSortedSet<T>SynchronizedSortedSet. intersect(SetIterable<? extends T> set)TreeSortedSet<T>TreeSortedSet. intersect(SetIterable<? extends T> set)MutableSortedSet<T>UnmodifiableSortedSet. intersect(SetIterable<? extends T> set)<R extends java.util.Set<T>>
RSortedSetAdapter. intersectInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RSynchronizedSortedSet. intersectInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RTreeSortedSet. intersectInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RUnmodifiableSortedSet. intersectInto(SetIterable<? extends T> set, R targetSet)booleanSortedSetAdapter. isProperSubsetOf(SetIterable<? extends T> candidateSuperset)booleanSynchronizedSortedSet. isProperSubsetOf(SetIterable<? extends T> candidateSuperset)booleanTreeSortedSet. isProperSubsetOf(SetIterable<? extends T> candidateSuperset)booleanUnmodifiableSortedSet. isProperSubsetOf(SetIterable<? extends T> candidateSuperset)booleanSortedSetAdapter. isSubsetOf(SetIterable<? extends T> candidateSuperset)booleanSynchronizedSortedSet. isSubsetOf(SetIterable<? extends T> candidateSuperset)booleanTreeSortedSet. isSubsetOf(SetIterable<? extends T> candidateSuperset)booleanUnmodifiableSortedSet. isSubsetOf(SetIterable<? extends T> candidateSuperset)MutableSortedSet<T>SortedSetAdapter. symmetricDifference(SetIterable<? extends T> setB)MutableSortedSet<T>SynchronizedSortedSet. symmetricDifference(SetIterable<? extends T> setB)MutableSortedSet<T>TreeSortedSet. symmetricDifference(SetIterable<? extends T> setB)MutableSortedSet<T>UnmodifiableSortedSet. symmetricDifference(SetIterable<? extends T> setB)<R extends java.util.Set<T>>
RSortedSetAdapter. symmetricDifferenceInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RSynchronizedSortedSet. symmetricDifferenceInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RTreeSortedSet. symmetricDifferenceInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RUnmodifiableSortedSet. symmetricDifferenceInto(SetIterable<? extends T> set, R targetSet)MutableSortedSet<T>SortedSetAdapter. union(SetIterable<? extends T> set)MutableSortedSet<T>SynchronizedSortedSet. union(SetIterable<? extends T> set)TreeSortedSet<T>TreeSortedSet. union(SetIterable<? extends T> set)MutableSortedSet<T>UnmodifiableSortedSet. union(SetIterable<? extends T> set)<R extends java.util.Set<T>>
RSortedSetAdapter. unionInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RSynchronizedSortedSet. unionInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RTreeSortedSet. unionInto(SetIterable<? extends T> set, R targetSet)<R extends java.util.Set<T>>
RUnmodifiableSortedSet. unionInto(SetIterable<? extends T> set, R targetSet) -
Uses of SetIterable in org.eclipse.collections.impl.set.strategy.immutable
Classes in org.eclipse.collections.impl.set.strategy.immutable that implement SetIterable Modifier and Type Class Description (package private) classImmutableEmptySetWithHashingStrategy<T>This is a zero elementImmutableUnifiedSetWithHashingStrategywhich is created by calling the HashingStrategySets.immutable.empty() method.(package private) classImmutableUnifiedSetWithHashingStrategy<T> -
Uses of SetIterable in org.eclipse.collections.impl.set.strategy.mutable
Classes in org.eclipse.collections.impl.set.strategy.mutable that implement SetIterable Modifier and Type Class Description classUnifiedSetWithHashingStrategy<T> -
Uses of SetIterable in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with parameters of type SetIterable Modifier and Type Method Description static <A,B>
LazyIterable<Pair<A,B>>SetIterables. cartesianProduct(SetIterable<A> set1, SetIterable<B> set2)static <A,B,C>
LazyIterable<C>SetIterables. cartesianProduct(SetIterable<A> set1, SetIterable<B> set2, Function2<A,B,C> function)static <E> MutableSet<E>SetIterables. difference(SetIterable<? extends E> minuendSet, SetIterable<? extends E> subtrahendSet)static <E,R extends java.util.Set<E>>
RSetIterables. differenceInto(SetIterable<? extends E> minuendSet, SetIterable<? extends E> subtrahendSet, R targetSet)static <E> MutableSet<E>SetIterables. intersect(SetIterable<? extends E> setA, SetIterable<? extends E> setB)static <E,R extends java.util.Set<E>>
RSetIterables. intersectInto(SetIterable<? extends E> setA, SetIterable<? extends E> setB, R targetSet)static <E> booleanSetIterables. isProperSubsetOf(SetIterable<? extends E> candidateSubset, SetIterable<? extends E> candidateSuperset)static <E> booleanSetIterables. isSubsetOf(SetIterable<? extends E> candidateSubset, SetIterable<? extends E> candidateSuperset)static <E> MutableSet<E>SetIterables. symmetricDifference(SetIterable<? extends E> setA, SetIterable<? extends E> setB)static <E,R extends java.util.Set<E>>
RSetIterables. symmetricDifferenceInto(SetIterable<? extends E> setA, SetIterable<? extends E> setB, R targetSet)static <E> MutableSet<E>SetIterables. union(SetIterable<? extends E> setA, SetIterable<? extends E> setB)static <E,R extends java.util.Set<E>>
RSetIterables. unionInto(SetIterable<? extends E> setA, SetIterable<? extends E> setB, R targetSet)
-