@Immutable public abstract class AbstractImmutableSet<T> extends AbstractImmutableCollection<T> implements org.eclipse.collections.api.set.ImmutableSet<T>, Set<T>
| Constructor and Description |
|---|
AbstractImmutableSet() |
| Modifier and Type | Method and Description |
|---|---|
org.eclipse.collections.api.set.ParallelUnsortedSetIterable<T> |
asParallel(ExecutorService executorService,
int batchSize) |
<B> org.eclipse.collections.api.LazyIterable<org.eclipse.collections.api.tuple.Pair<T,B>> |
cartesianProduct(org.eclipse.collections.api.set.SetIterable<B> set) |
Set<T> |
castToSet() |
<V> org.eclipse.collections.api.set.ImmutableSet<V> |
collect(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
org.eclipse.collections.api.set.primitive.ImmutableBooleanSet |
collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T> booleanFunction) |
org.eclipse.collections.api.set.primitive.ImmutableByteSet |
collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T> byteFunction) |
org.eclipse.collections.api.set.primitive.ImmutableCharSet |
collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T> charFunction) |
org.eclipse.collections.api.set.primitive.ImmutableDoubleSet |
collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> doubleFunction) |
org.eclipse.collections.api.set.primitive.ImmutableFloatSet |
collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> floatFunction) |
<V> org.eclipse.collections.api.set.ImmutableSet<V> |
collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate,
org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
org.eclipse.collections.api.set.primitive.ImmutableIntSet |
collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> intFunction) |
org.eclipse.collections.api.set.primitive.ImmutableLongSet |
collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> longFunction) |
org.eclipse.collections.api.set.primitive.ImmutableShortSet |
collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T> shortFunction) |
<P,V> org.eclipse.collections.api.set.ImmutableSet<V> |
collectWith(org.eclipse.collections.api.block.function.Function2<? super T,? super P,? extends V> function,
P parameter) |
org.eclipse.collections.api.set.ImmutableSet<T> |
difference(org.eclipse.collections.api.set.SetIterable<? extends T> subtrahendSet) |
<R extends Set<T>> |
differenceInto(org.eclipse.collections.api.set.SetIterable<? extends T> subtrahendSet,
R targetSet) |
<V> org.eclipse.collections.api.set.ImmutableSet<V> |
flatCollect(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function) |
<V> org.eclipse.collections.api.multimap.set.ImmutableSetMultimap<V,T> |
groupBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
<V,R extends org.eclipse.collections.api.multimap.MutableMultimap<V,T>> |
groupBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function,
R target) |
<V> org.eclipse.collections.api.multimap.set.ImmutableSetMultimap<V,T> |
groupByEach(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function) |
<V,R extends org.eclipse.collections.api.multimap.MutableMultimap<V,T>> |
groupByEach(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function,
R target) |
org.eclipse.collections.api.set.ImmutableSet<T> |
intersect(org.eclipse.collections.api.set.SetIterable<? extends T> set) |
<R extends Set<T>> |
intersectInto(org.eclipse.collections.api.set.SetIterable<? extends T> set,
R targetSet) |
boolean |
isProperSubsetOf(org.eclipse.collections.api.set.SetIterable<? extends T> candidateSuperset) |
boolean |
isSubsetOf(org.eclipse.collections.api.set.SetIterable<? extends T> candidateSuperset) |
org.eclipse.collections.api.set.ImmutableSet<T> |
newWith(T element) |
org.eclipse.collections.api.set.ImmutableSet<T> |
newWithAll(Iterable<? extends T> elements) |
org.eclipse.collections.api.set.ImmutableSet<T> |
newWithout(T element) |
org.eclipse.collections.api.set.ImmutableSet<T> |
newWithoutAll(Iterable<? extends T> elements) |
org.eclipse.collections.api.partition.set.PartitionImmutableSet<T> |
partition(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> org.eclipse.collections.api.partition.set.PartitionImmutableSet<T> |
partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
org.eclipse.collections.api.set.ImmutableSet<org.eclipse.collections.api.set.UnsortedSetIterable<T>> |
powerSet() |
org.eclipse.collections.api.set.ImmutableSet<T> |
reject(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> org.eclipse.collections.api.set.ImmutableSet<T> |
rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
org.eclipse.collections.api.set.ImmutableSet<T> |
select(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<S> org.eclipse.collections.api.set.ImmutableSet<S> |
selectInstancesOf(Class<S> clazz) |
<P> org.eclipse.collections.api.set.ImmutableSet<T> |
selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
org.eclipse.collections.api.set.ImmutableSet<T> |
symmetricDifference(org.eclipse.collections.api.set.SetIterable<? extends T> setB) |
<R extends Set<T>> |
symmetricDifferenceInto(org.eclipse.collections.api.set.SetIterable<? extends T> set,
R targetSet) |
org.eclipse.collections.api.set.ImmutableSet<T> |
tap(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure) |
org.eclipse.collections.api.set.ImmutableSet<T> |
toImmutable() |
org.eclipse.collections.api.set.ImmutableSet<T> |
union(org.eclipse.collections.api.set.SetIterable<? extends T> set) |
<R extends Set<T>> |
unionInto(org.eclipse.collections.api.set.SetIterable<? extends T> set,
R targetSet) |
<S> org.eclipse.collections.api.set.ImmutableSet<org.eclipse.collections.api.tuple.Pair<T,S>> |
zip(Iterable<S> that)
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
org.eclipse.collections.api.set.ImmutableSet<org.eclipse.collections.api.tuple.Pair<T,Integer>> |
zipWithIndex()
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
add, addAll, aggregateBy, aggregateInPlaceBy, chunk, clear, groupByUniqueKey, remove, removeAll, retainAllallSatisfy, allSatisfyWith, anySatisfy, anySatisfyWith, appendString, appendString, appendString, asLazy, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, contains, containsAll, containsAllArguments, containsAllIterable, count, countWith, detect, detectIfNone, detectWith, detectWithIfNone, flatCollect, forEach, forEachWith, forEachWithIndex, groupByUniqueKey, injectInto, injectInto, injectInto, injectInto, injectInto, isEmpty, makeString, makeString, makeString, max, max, maxBy, min, min, minBy, noneSatisfy, noneSatisfyWith, notEmpty, reject, rejectWith, select, selectWith, sumByDouble, sumByFloat, sumByInt, sumByLong, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, toArray, toArray, toBag, toList, toMap, toSet, toSortedBag, toSortedBag, toSortedBagBy, toSortedList, toSortedList, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy, toString, zip, zipWithIndexequals, getClass, hashCode, notify, notifyAll, wait, wait, waitaggregateBy, aggregateInPlaceBy, groupByUniqueKeyallSatisfy, allSatisfyWith, anySatisfy, anySatisfyWith, appendString, appendString, appendString, asLazy, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, contains, containsAll, containsAllArguments, containsAllIterable, count, countWith, detect, detectIfNone, detectWith, detectWithIfNone, each, flatCollect, getFirst, getLast, groupByUniqueKey, injectInto, injectInto, injectInto, injectInto, injectInto, isEmpty, makeString, makeString, makeString, max, max, maxBy, min, min, minBy, noneSatisfy, noneSatisfyWith, notEmpty, reject, rejectWith, select, selectWith, size, sumByDouble, sumByFloat, sumByInt, sumByLong, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, toArray, toArray, toBag, toList, toMap, toSet, toSortedBag, toSortedBag, toSortedBagBy, toSortedList, toSortedList, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy, toString, zip, zipWithIndexforEach, forEachWith, forEachWithIndexforEach, iterator, spliteratoradd, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, spliterator, toArray, toArrayparallelStream, removeIf, streampublic Set<T> castToSet()
castToSet in interface org.eclipse.collections.api.set.ImmutableSet<T>public org.eclipse.collections.api.set.ImmutableSet<T> newWithAll(Iterable<? extends T> elements)
public org.eclipse.collections.api.set.ImmutableSet<T> newWithoutAll(Iterable<? extends T> elements)
public org.eclipse.collections.api.set.ImmutableSet<T> tap(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure)
tap in interface org.eclipse.collections.api.collection.ImmutableCollection<T>tap in interface org.eclipse.collections.api.RichIterable<T>tap in interface org.eclipse.collections.api.set.ImmutableSet<T>tap in interface org.eclipse.collections.api.set.ImmutableSetIterable<T>public org.eclipse.collections.api.set.ImmutableSet<T> select(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
select in interface org.eclipse.collections.api.collection.ImmutableCollection<T>select in interface org.eclipse.collections.api.RichIterable<T>select in interface org.eclipse.collections.api.set.ImmutableSet<T>select in interface org.eclipse.collections.api.set.ImmutableSetIterable<T>select in interface org.eclipse.collections.api.set.SetIterable<T>select in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>public <P> org.eclipse.collections.api.set.ImmutableSet<T> selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
selectWith in interface org.eclipse.collections.api.collection.ImmutableCollection<T>selectWith in interface org.eclipse.collections.api.RichIterable<T>selectWith in interface org.eclipse.collections.api.set.ImmutableSet<T>selectWith in interface org.eclipse.collections.api.set.ImmutableSetIterable<T>selectWith in interface org.eclipse.collections.api.set.SetIterable<T>selectWith in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>public org.eclipse.collections.api.set.ImmutableSet<T> reject(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
reject in interface org.eclipse.collections.api.collection.ImmutableCollection<T>reject in interface org.eclipse.collections.api.RichIterable<T>reject in interface org.eclipse.collections.api.set.ImmutableSet<T>reject in interface org.eclipse.collections.api.set.ImmutableSetIterable<T>reject in interface org.eclipse.collections.api.set.SetIterable<T>reject in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>public <P> org.eclipse.collections.api.set.ImmutableSet<T> rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
rejectWith in interface org.eclipse.collections.api.collection.ImmutableCollection<T>rejectWith in interface org.eclipse.collections.api.RichIterable<T>rejectWith in interface org.eclipse.collections.api.set.ImmutableSet<T>rejectWith in interface org.eclipse.collections.api.set.ImmutableSetIterable<T>rejectWith in interface org.eclipse.collections.api.set.SetIterable<T>rejectWith in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>public org.eclipse.collections.api.partition.set.PartitionImmutableSet<T> partition(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate)
partition in interface org.eclipse.collections.api.collection.ImmutableCollection<T>partition in interface org.eclipse.collections.api.RichIterable<T>partition in interface org.eclipse.collections.api.set.ImmutableSet<T>partition in interface org.eclipse.collections.api.set.ImmutableSetIterable<T>partition in interface org.eclipse.collections.api.set.SetIterable<T>public <P> org.eclipse.collections.api.partition.set.PartitionImmutableSet<T> partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
partitionWith in interface org.eclipse.collections.api.collection.ImmutableCollection<T>partitionWith in interface org.eclipse.collections.api.RichIterable<T>partitionWith in interface org.eclipse.collections.api.set.ImmutableSet<T>partitionWith in interface org.eclipse.collections.api.set.ImmutableSetIterable<T>partitionWith in interface org.eclipse.collections.api.set.SetIterable<T>public <S> org.eclipse.collections.api.set.ImmutableSet<S> selectInstancesOf(Class<S> clazz)
selectInstancesOf in interface org.eclipse.collections.api.collection.ImmutableCollection<T>selectInstancesOf in interface org.eclipse.collections.api.RichIterable<T>selectInstancesOf in interface org.eclipse.collections.api.set.ImmutableSet<T>selectInstancesOf in interface org.eclipse.collections.api.set.ImmutableSetIterable<T>selectInstancesOf in interface org.eclipse.collections.api.set.SetIterable<T>selectInstancesOf in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>public <V> org.eclipse.collections.api.set.ImmutableSet<V> collect(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
collect in interface org.eclipse.collections.api.collection.ImmutableCollection<T>collect in interface org.eclipse.collections.api.RichIterable<T>collect in interface org.eclipse.collections.api.set.ImmutableSet<T>collect in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>public org.eclipse.collections.api.set.primitive.ImmutableBooleanSet collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T> booleanFunction)
collectBoolean in interface org.eclipse.collections.api.collection.ImmutableCollection<T>collectBoolean in interface org.eclipse.collections.api.RichIterable<T>collectBoolean in interface org.eclipse.collections.api.set.ImmutableSet<T>collectBoolean in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>public org.eclipse.collections.api.set.primitive.ImmutableByteSet collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T> byteFunction)
collectByte in interface org.eclipse.collections.api.collection.ImmutableCollection<T>collectByte in interface org.eclipse.collections.api.RichIterable<T>collectByte in interface org.eclipse.collections.api.set.ImmutableSet<T>collectByte in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>public org.eclipse.collections.api.set.primitive.ImmutableCharSet collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T> charFunction)
collectChar in interface org.eclipse.collections.api.collection.ImmutableCollection<T>collectChar in interface org.eclipse.collections.api.RichIterable<T>collectChar in interface org.eclipse.collections.api.set.ImmutableSet<T>collectChar in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>public org.eclipse.collections.api.set.primitive.ImmutableDoubleSet collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T> doubleFunction)
collectDouble in interface org.eclipse.collections.api.collection.ImmutableCollection<T>collectDouble in interface org.eclipse.collections.api.RichIterable<T>collectDouble in interface org.eclipse.collections.api.set.ImmutableSet<T>collectDouble in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>public org.eclipse.collections.api.set.primitive.ImmutableFloatSet collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T> floatFunction)
collectFloat in interface org.eclipse.collections.api.collection.ImmutableCollection<T>collectFloat in interface org.eclipse.collections.api.RichIterable<T>collectFloat in interface org.eclipse.collections.api.set.ImmutableSet<T>collectFloat in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>public org.eclipse.collections.api.set.primitive.ImmutableIntSet collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T> intFunction)
collectInt in interface org.eclipse.collections.api.collection.ImmutableCollection<T>collectInt in interface org.eclipse.collections.api.RichIterable<T>collectInt in interface org.eclipse.collections.api.set.ImmutableSet<T>collectInt in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>public org.eclipse.collections.api.set.primitive.ImmutableLongSet collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T> longFunction)
collectLong in interface org.eclipse.collections.api.collection.ImmutableCollection<T>collectLong in interface org.eclipse.collections.api.RichIterable<T>collectLong in interface org.eclipse.collections.api.set.ImmutableSet<T>collectLong in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>public org.eclipse.collections.api.set.primitive.ImmutableShortSet collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T> shortFunction)
collectShort in interface org.eclipse.collections.api.collection.ImmutableCollection<T>collectShort in interface org.eclipse.collections.api.RichIterable<T>collectShort in interface org.eclipse.collections.api.set.ImmutableSet<T>collectShort in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>public <P,V> org.eclipse.collections.api.set.ImmutableSet<V> collectWith(org.eclipse.collections.api.block.function.Function2<? super T,? super P,? extends V> function, P parameter)
collectWith in interface org.eclipse.collections.api.collection.ImmutableCollection<T>collectWith in interface org.eclipse.collections.api.RichIterable<T>collectWith in interface org.eclipse.collections.api.set.ImmutableSet<T>collectWith in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>public <V> org.eclipse.collections.api.set.ImmutableSet<V> collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate, org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
collectIf in interface org.eclipse.collections.api.collection.ImmutableCollection<T>collectIf in interface org.eclipse.collections.api.RichIterable<T>collectIf in interface org.eclipse.collections.api.set.ImmutableSet<T>collectIf in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>public <V> org.eclipse.collections.api.set.ImmutableSet<V> flatCollect(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function)
flatCollect in interface org.eclipse.collections.api.collection.ImmutableCollection<T>flatCollect in interface org.eclipse.collections.api.RichIterable<T>flatCollect in interface org.eclipse.collections.api.set.ImmutableSet<T>flatCollect in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>public org.eclipse.collections.api.set.ImmutableSet<T> toImmutable()
public <V> org.eclipse.collections.api.multimap.set.ImmutableSetMultimap<V,T> groupBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function)
groupBy in interface org.eclipse.collections.api.collection.ImmutableCollection<T>groupBy in interface org.eclipse.collections.api.RichIterable<T>groupBy in interface org.eclipse.collections.api.set.ImmutableSet<T>groupBy in interface org.eclipse.collections.api.set.ImmutableSetIterable<T>groupBy in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>public <V,R extends org.eclipse.collections.api.multimap.MutableMultimap<V,T>> R groupBy(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function, R target)
groupBy in interface org.eclipse.collections.api.RichIterable<T>groupBy in class AbstractRichIterable<T>public <V> org.eclipse.collections.api.multimap.set.ImmutableSetMultimap<V,T> groupByEach(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function)
groupByEach in interface org.eclipse.collections.api.collection.ImmutableCollection<T>groupByEach in interface org.eclipse.collections.api.RichIterable<T>groupByEach in interface org.eclipse.collections.api.set.ImmutableSet<T>groupByEach in interface org.eclipse.collections.api.set.ImmutableSetIterable<T>groupByEach in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>public <V,R extends org.eclipse.collections.api.multimap.MutableMultimap<V,T>> R groupByEach(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function, R target)
groupByEach in interface org.eclipse.collections.api.RichIterable<T>groupByEach in class AbstractRichIterable<T>@Deprecated public <S> org.eclipse.collections.api.set.ImmutableSet<org.eclipse.collections.api.tuple.Pair<T,S>> zip(Iterable<S> that)
OrderedIterable.zip(Iterable) instead.zip in interface org.eclipse.collections.api.collection.ImmutableCollection<T>zip in interface org.eclipse.collections.api.RichIterable<T>zip in interface org.eclipse.collections.api.set.ImmutableSet<T>zip in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>@Deprecated public org.eclipse.collections.api.set.ImmutableSet<org.eclipse.collections.api.tuple.Pair<T,Integer>> zipWithIndex()
OrderedIterable.zipWithIndex() instead.zipWithIndex in interface org.eclipse.collections.api.collection.ImmutableCollection<T>zipWithIndex in interface org.eclipse.collections.api.RichIterable<T>zipWithIndex in interface org.eclipse.collections.api.set.ImmutableSet<T>zipWithIndex in interface org.eclipse.collections.api.set.ImmutableSetIterable<T>zipWithIndex in interface org.eclipse.collections.api.set.SetIterable<T>zipWithIndex in interface org.eclipse.collections.api.set.UnsortedSetIterable<T>public org.eclipse.collections.api.set.ImmutableSet<T> union(org.eclipse.collections.api.set.SetIterable<? extends T> set)
public <R extends Set<T>> R unionInto(org.eclipse.collections.api.set.SetIterable<? extends T> set, R targetSet)
unionInto in interface org.eclipse.collections.api.set.SetIterable<T>public org.eclipse.collections.api.set.ImmutableSet<T> intersect(org.eclipse.collections.api.set.SetIterable<? extends T> set)
public <R extends Set<T>> R intersectInto(org.eclipse.collections.api.set.SetIterable<? extends T> set, R targetSet)
intersectInto in interface org.eclipse.collections.api.set.SetIterable<T>public org.eclipse.collections.api.set.ImmutableSet<T> difference(org.eclipse.collections.api.set.SetIterable<? extends T> subtrahendSet)
public <R extends Set<T>> R differenceInto(org.eclipse.collections.api.set.SetIterable<? extends T> subtrahendSet, R targetSet)
differenceInto in interface org.eclipse.collections.api.set.SetIterable<T>public org.eclipse.collections.api.set.ImmutableSet<T> symmetricDifference(org.eclipse.collections.api.set.SetIterable<? extends T> setB)
public <R extends Set<T>> R symmetricDifferenceInto(org.eclipse.collections.api.set.SetIterable<? extends T> set, R targetSet)
symmetricDifferenceInto in interface org.eclipse.collections.api.set.SetIterable<T>public boolean isSubsetOf(org.eclipse.collections.api.set.SetIterable<? extends T> candidateSuperset)
isSubsetOf in interface org.eclipse.collections.api.set.SetIterable<T>public boolean isProperSubsetOf(org.eclipse.collections.api.set.SetIterable<? extends T> candidateSuperset)
isProperSubsetOf in interface org.eclipse.collections.api.set.SetIterable<T>public org.eclipse.collections.api.set.ImmutableSet<org.eclipse.collections.api.set.UnsortedSetIterable<T>> powerSet()
public <B> org.eclipse.collections.api.LazyIterable<org.eclipse.collections.api.tuple.Pair<T,B>> cartesianProduct(org.eclipse.collections.api.set.SetIterable<B> set)
cartesianProduct in interface org.eclipse.collections.api.set.SetIterable<T>public org.eclipse.collections.api.set.ParallelUnsortedSetIterable<T> asParallel(ExecutorService executorService, int batchSize)
Copyright © 2004–2018. All rights reserved.