public final class MultiReaderUnifiedSet<T> extends AbstractMultiReaderMutableCollection<T> implements RandomAccess, Externalizable, com.gs.collections.api.set.MutableSet<T>
| Constructor and Description |
|---|
MultiReaderUnifiedSet()
Deprecated.
Empty default constructor used for serialization.
|
| Modifier and Type | Method and Description |
|---|---|
com.gs.collections.api.set.ParallelUnsortedSetIterable<T> |
asParallel(ExecutorService executorService,
int batchSize) |
com.gs.collections.api.set.MutableSet<T> |
asSynchronized() |
com.gs.collections.api.set.MutableSet<T> |
asUnmodifiable() |
<B> com.gs.collections.api.LazyIterable<com.gs.collections.api.tuple.Pair<T,B>> |
cartesianProduct(com.gs.collections.api.set.SetIterable<B> set) |
com.gs.collections.api.RichIterable<com.gs.collections.api.RichIterable<T>> |
chunk(int size) |
com.gs.collections.api.set.MutableSet<T> |
clone() |
<V> com.gs.collections.api.set.MutableSet<V> |
collect(com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
com.gs.collections.api.set.primitive.MutableBooleanSet |
collectBoolean(com.gs.collections.api.block.function.primitive.BooleanFunction<? super T> booleanFunction) |
com.gs.collections.api.set.primitive.MutableByteSet |
collectByte(com.gs.collections.api.block.function.primitive.ByteFunction<? super T> byteFunction) |
com.gs.collections.api.set.primitive.MutableCharSet |
collectChar(com.gs.collections.api.block.function.primitive.CharFunction<? super T> charFunction) |
com.gs.collections.api.set.primitive.MutableDoubleSet |
collectDouble(com.gs.collections.api.block.function.primitive.DoubleFunction<? super T> doubleFunction) |
com.gs.collections.api.set.primitive.MutableFloatSet |
collectFloat(com.gs.collections.api.block.function.primitive.FloatFunction<? super T> floatFunction) |
<V> com.gs.collections.api.set.MutableSet<V> |
collectIf(com.gs.collections.api.block.predicate.Predicate<? super T> predicate,
com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
com.gs.collections.api.set.primitive.MutableIntSet |
collectInt(com.gs.collections.api.block.function.primitive.IntFunction<? super T> intFunction) |
com.gs.collections.api.set.primitive.MutableLongSet |
collectLong(com.gs.collections.api.block.function.primitive.LongFunction<? super T> longFunction) |
com.gs.collections.api.set.primitive.MutableShortSet |
collectShort(com.gs.collections.api.block.function.primitive.ShortFunction<? super T> shortFunction) |
<P,V> com.gs.collections.api.set.MutableSet<V> |
collectWith(com.gs.collections.api.block.function.Function2<? super T,? super P,? extends V> function,
P parameter) |
com.gs.collections.api.set.MutableSet<T> |
difference(com.gs.collections.api.set.SetIterable<? extends T> subtrahendSet) |
<R extends Set<T>> |
differenceInto(com.gs.collections.api.set.SetIterable<? extends T> subtrahendSet,
R targetSet) |
boolean |
equals(Object o) |
<V> com.gs.collections.api.set.MutableSet<V> |
flatCollect(com.gs.collections.api.block.function.Function<? super T,? extends Iterable<V>> function) |
<V> com.gs.collections.api.multimap.set.MutableSetMultimap<V,T> |
groupBy(com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
<V> com.gs.collections.api.multimap.set.MutableSetMultimap<V,T> |
groupByEach(com.gs.collections.api.block.function.Function<? super T,? extends Iterable<V>> function) |
<V> com.gs.collections.api.map.MutableMap<V,T> |
groupByUniqueKey(com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
int |
hashCode() |
com.gs.collections.api.set.MutableSet<T> |
intersect(com.gs.collections.api.set.SetIterable<? extends T> set) |
<R extends Set<T>> |
intersectInto(com.gs.collections.api.set.SetIterable<? extends T> set,
R targetSet) |
boolean |
isProperSubsetOf(com.gs.collections.api.set.SetIterable<? extends T> candidateSuperset) |
boolean |
isSubsetOf(com.gs.collections.api.set.SetIterable<? extends T> candidateSuperset) |
com.gs.collections.api.set.MutableSet<T> |
newEmpty() |
static <T> MultiReaderUnifiedSet<T> |
newSet() |
static <T> MultiReaderUnifiedSet<T> |
newSet(int capacity) |
static <T> MultiReaderUnifiedSet<T> |
newSet(Iterable<T> iterable) |
static <T> MultiReaderUnifiedSet<T> |
newSetWith(T... elements) |
com.gs.collections.api.partition.set.PartitionMutableSet<T> |
partition(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> com.gs.collections.api.partition.set.PartitionMutableSet<T> |
partitionWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
com.gs.collections.api.set.MutableSet<com.gs.collections.api.set.UnsortedSetIterable<T>> |
powerSet() |
void |
readExternal(ObjectInput in) |
com.gs.collections.api.set.MutableSet<T> |
reject(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> com.gs.collections.api.set.MutableSet<T> |
rejectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
com.gs.collections.api.set.MutableSet<T> |
select(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
<S> com.gs.collections.api.set.MutableSet<S> |
selectInstancesOf(Class<S> clazz) |
<P> com.gs.collections.api.set.MutableSet<T> |
selectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
com.gs.collections.api.set.MutableSet<T> |
symmetricDifference(com.gs.collections.api.set.SetIterable<? extends T> setB) |
<R extends Set<T>> |
symmetricDifferenceInto(com.gs.collections.api.set.SetIterable<? extends T> set,
R targetSet) |
com.gs.collections.api.set.MutableSet<T> |
tap(com.gs.collections.api.block.procedure.Procedure<? super T> procedure) |
com.gs.collections.api.set.ImmutableSet<T> |
toImmutable() |
com.gs.collections.api.set.MutableSet<T> |
union(com.gs.collections.api.set.SetIterable<? extends T> set) |
<R extends Set<T>> |
unionInto(com.gs.collections.api.set.SetIterable<? extends T> set,
R targetSet) |
com.gs.collections.api.set.MutableSet<T> |
with(T element) |
com.gs.collections.api.set.MutableSet<T> |
withAll(Iterable<? extends T> elements) |
com.gs.collections.api.set.MutableSet<T> |
without(T element) |
com.gs.collections.api.set.MutableSet<T> |
withoutAll(Iterable<? extends T> elements) |
void |
withReadLockAndDelegate(com.gs.collections.api.block.procedure.Procedure<com.gs.collections.api.set.MutableSet<T>> procedure) |
void |
withWriteLockAndDelegate(com.gs.collections.api.block.procedure.Procedure<com.gs.collections.api.set.MutableSet<T>> procedure) |
void |
writeExternal(ObjectOutput out) |
<S> com.gs.collections.api.set.MutableSet<com.gs.collections.api.tuple.Pair<T,S>> |
zip(Iterable<S> that)
Deprecated.
in 6.0. Use
OrderedIterable.zip(Iterable) instead. |
com.gs.collections.api.set.MutableSet<com.gs.collections.api.tuple.Pair<T,Integer>> |
zipWithIndex()
Deprecated.
in 6.0. Use
OrderedIterable.zipWithIndex() instead. |
add, addAll, addAllIterable, aggregateBy, aggregateInPlaceBy, allSatisfy, allSatisfyWith, anySatisfy, anySatisfyWith, appendString, appendString, appendString, asLazy, clear, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectIf, collectInt, collectLong, collectShort, collectWith, contains, containsAll, containsAllArguments, containsAllIterable, count, countWith, detect, detectIfNone, detectWith, detectWithIfNone, each, flatCollect, forEach, forEachWith, forEachWithIndex, getFirst, getLast, groupBy, groupByEach, groupByUniqueKey, injectInto, injectInto, injectInto, injectInto, injectInto, injectIntoWith, isEmpty, iterator, makeString, makeString, makeString, max, max, maxBy, min, min, minBy, noneSatisfy, noneSatisfyWith, notEmpty, reject, rejectWith, remove, removeAll, removeAllIterable, removeIf, removeIfWith, retainAll, retainAllIterable, select, selectAndRejectWith, 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, zipWithIndexaddAllIterable, aggregateBy, aggregateInPlaceBy, injectIntoWith, removeAllIterable, removeIf, removeIfWith, retainAllIterable, selectAndRejectWithallSatisfy, 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, each, flatCollect, getFirst, getLast, groupBy, groupByEach, 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, forEachWithIndexadd, addAll, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, retainAll, size, spliterator, toArray, toArrayparallelStream, removeIf, stream@Deprecated public MultiReaderUnifiedSet()
public static <T> MultiReaderUnifiedSet<T> newSet()
public static <T> MultiReaderUnifiedSet<T> newSet(int capacity)
public static <T> MultiReaderUnifiedSet<T> newSet(Iterable<T> iterable)
public static <T> MultiReaderUnifiedSet<T> newSetWith(T... elements)
public void withReadLockAndDelegate(com.gs.collections.api.block.procedure.Procedure<com.gs.collections.api.set.MutableSet<T>> procedure)
public void withWriteLockAndDelegate(com.gs.collections.api.block.procedure.Procedure<com.gs.collections.api.set.MutableSet<T>> procedure)
public com.gs.collections.api.set.MutableSet<T> asSynchronized()
public com.gs.collections.api.set.ImmutableSet<T> toImmutable()
toImmutable in interface com.gs.collections.api.collection.MutableCollection<T>toImmutable in interface com.gs.collections.api.set.MutableSet<T>toImmutable in interface com.gs.collections.api.set.SetIterable<T>toImmutable in interface com.gs.collections.api.set.UnsortedSetIterable<T>public com.gs.collections.api.set.MutableSet<T> asUnmodifiable()
public com.gs.collections.api.set.MutableSet<T> clone()
public <V> com.gs.collections.api.set.MutableSet<V> collect(com.gs.collections.api.block.function.Function<? super T,? extends V> function)
collect in interface com.gs.collections.api.collection.MutableCollection<T>collect in interface com.gs.collections.api.RichIterable<T>collect in interface com.gs.collections.api.set.MutableSet<T>collect in interface com.gs.collections.api.set.UnsortedSetIterable<T>public com.gs.collections.api.set.primitive.MutableBooleanSet collectBoolean(com.gs.collections.api.block.function.primitive.BooleanFunction<? super T> booleanFunction)
collectBoolean in interface com.gs.collections.api.collection.MutableCollection<T>collectBoolean in interface com.gs.collections.api.RichIterable<T>collectBoolean in interface com.gs.collections.api.set.MutableSet<T>collectBoolean in interface com.gs.collections.api.set.UnsortedSetIterable<T>public com.gs.collections.api.set.primitive.MutableByteSet collectByte(com.gs.collections.api.block.function.primitive.ByteFunction<? super T> byteFunction)
collectByte in interface com.gs.collections.api.collection.MutableCollection<T>collectByte in interface com.gs.collections.api.RichIterable<T>collectByte in interface com.gs.collections.api.set.MutableSet<T>collectByte in interface com.gs.collections.api.set.UnsortedSetIterable<T>public com.gs.collections.api.set.primitive.MutableCharSet collectChar(com.gs.collections.api.block.function.primitive.CharFunction<? super T> charFunction)
collectChar in interface com.gs.collections.api.collection.MutableCollection<T>collectChar in interface com.gs.collections.api.RichIterable<T>collectChar in interface com.gs.collections.api.set.MutableSet<T>collectChar in interface com.gs.collections.api.set.UnsortedSetIterable<T>public com.gs.collections.api.set.primitive.MutableDoubleSet collectDouble(com.gs.collections.api.block.function.primitive.DoubleFunction<? super T> doubleFunction)
collectDouble in interface com.gs.collections.api.collection.MutableCollection<T>collectDouble in interface com.gs.collections.api.RichIterable<T>collectDouble in interface com.gs.collections.api.set.MutableSet<T>collectDouble in interface com.gs.collections.api.set.UnsortedSetIterable<T>public com.gs.collections.api.set.primitive.MutableFloatSet collectFloat(com.gs.collections.api.block.function.primitive.FloatFunction<? super T> floatFunction)
collectFloat in interface com.gs.collections.api.collection.MutableCollection<T>collectFloat in interface com.gs.collections.api.RichIterable<T>collectFloat in interface com.gs.collections.api.set.MutableSet<T>collectFloat in interface com.gs.collections.api.set.UnsortedSetIterable<T>public com.gs.collections.api.set.primitive.MutableIntSet collectInt(com.gs.collections.api.block.function.primitive.IntFunction<? super T> intFunction)
collectInt in interface com.gs.collections.api.collection.MutableCollection<T>collectInt in interface com.gs.collections.api.RichIterable<T>collectInt in interface com.gs.collections.api.set.MutableSet<T>collectInt in interface com.gs.collections.api.set.UnsortedSetIterable<T>public com.gs.collections.api.set.primitive.MutableLongSet collectLong(com.gs.collections.api.block.function.primitive.LongFunction<? super T> longFunction)
collectLong in interface com.gs.collections.api.collection.MutableCollection<T>collectLong in interface com.gs.collections.api.RichIterable<T>collectLong in interface com.gs.collections.api.set.MutableSet<T>collectLong in interface com.gs.collections.api.set.UnsortedSetIterable<T>public com.gs.collections.api.set.primitive.MutableShortSet collectShort(com.gs.collections.api.block.function.primitive.ShortFunction<? super T> shortFunction)
collectShort in interface com.gs.collections.api.collection.MutableCollection<T>collectShort in interface com.gs.collections.api.RichIterable<T>collectShort in interface com.gs.collections.api.set.MutableSet<T>collectShort in interface com.gs.collections.api.set.UnsortedSetIterable<T>public <V> com.gs.collections.api.set.MutableSet<V> flatCollect(com.gs.collections.api.block.function.Function<? super T,? extends Iterable<V>> function)
flatCollect in interface com.gs.collections.api.collection.MutableCollection<T>flatCollect in interface com.gs.collections.api.RichIterable<T>flatCollect in interface com.gs.collections.api.set.MutableSet<T>flatCollect in interface com.gs.collections.api.set.UnsortedSetIterable<T>public <V> com.gs.collections.api.set.MutableSet<V> collectIf(com.gs.collections.api.block.predicate.Predicate<? super T> predicate, com.gs.collections.api.block.function.Function<? super T,? extends V> function)
collectIf in interface com.gs.collections.api.collection.MutableCollection<T>collectIf in interface com.gs.collections.api.RichIterable<T>collectIf in interface com.gs.collections.api.set.MutableSet<T>collectIf in interface com.gs.collections.api.set.UnsortedSetIterable<T>public <P,V> com.gs.collections.api.set.MutableSet<V> collectWith(com.gs.collections.api.block.function.Function2<? super T,? super P,? extends V> function, P parameter)
collectWith in interface com.gs.collections.api.collection.MutableCollection<T>collectWith in interface com.gs.collections.api.RichIterable<T>collectWith in interface com.gs.collections.api.set.MutableSet<T>collectWith in interface com.gs.collections.api.set.UnsortedSetIterable<T>public com.gs.collections.api.set.MutableSet<T> newEmpty()
public com.gs.collections.api.set.MutableSet<T> reject(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
reject in interface com.gs.collections.api.collection.MutableCollection<T>reject in interface com.gs.collections.api.RichIterable<T>reject in interface com.gs.collections.api.set.MutableSet<T>reject in interface com.gs.collections.api.set.MutableSetIterable<T>reject in interface com.gs.collections.api.set.SetIterable<T>reject in interface com.gs.collections.api.set.UnsortedSetIterable<T>public <P> com.gs.collections.api.set.MutableSet<T> rejectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
rejectWith in interface com.gs.collections.api.collection.MutableCollection<T>rejectWith in interface com.gs.collections.api.RichIterable<T>rejectWith in interface com.gs.collections.api.set.MutableSet<T>rejectWith in interface com.gs.collections.api.set.MutableSetIterable<T>rejectWith in interface com.gs.collections.api.set.SetIterable<T>rejectWith in interface com.gs.collections.api.set.UnsortedSetIterable<T>public com.gs.collections.api.set.MutableSet<T> tap(com.gs.collections.api.block.procedure.Procedure<? super T> procedure)
tap in interface com.gs.collections.api.collection.MutableCollection<T>tap in interface com.gs.collections.api.RichIterable<T>tap in interface com.gs.collections.api.set.MutableSet<T>tap in interface com.gs.collections.api.set.MutableSetIterable<T>public com.gs.collections.api.set.MutableSet<T> select(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
select in interface com.gs.collections.api.collection.MutableCollection<T>select in interface com.gs.collections.api.RichIterable<T>select in interface com.gs.collections.api.set.MutableSet<T>select in interface com.gs.collections.api.set.MutableSetIterable<T>select in interface com.gs.collections.api.set.SetIterable<T>select in interface com.gs.collections.api.set.UnsortedSetIterable<T>public <P> com.gs.collections.api.set.MutableSet<T> selectWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
selectWith in interface com.gs.collections.api.collection.MutableCollection<T>selectWith in interface com.gs.collections.api.RichIterable<T>selectWith in interface com.gs.collections.api.set.MutableSet<T>selectWith in interface com.gs.collections.api.set.MutableSetIterable<T>selectWith in interface com.gs.collections.api.set.SetIterable<T>selectWith in interface com.gs.collections.api.set.UnsortedSetIterable<T>public com.gs.collections.api.partition.set.PartitionMutableSet<T> partition(com.gs.collections.api.block.predicate.Predicate<? super T> predicate)
partition in interface com.gs.collections.api.collection.MutableCollection<T>partition in interface com.gs.collections.api.RichIterable<T>partition in interface com.gs.collections.api.set.MutableSet<T>partition in interface com.gs.collections.api.set.MutableSetIterable<T>partition in interface com.gs.collections.api.set.SetIterable<T>public <P> com.gs.collections.api.partition.set.PartitionMutableSet<T> partitionWith(com.gs.collections.api.block.predicate.Predicate2<? super T,? super P> predicate, P parameter)
partitionWith in interface com.gs.collections.api.collection.MutableCollection<T>partitionWith in interface com.gs.collections.api.RichIterable<T>partitionWith in interface com.gs.collections.api.set.MutableSet<T>partitionWith in interface com.gs.collections.api.set.MutableSetIterable<T>partitionWith in interface com.gs.collections.api.set.SetIterable<T>public <S> com.gs.collections.api.set.MutableSet<S> selectInstancesOf(Class<S> clazz)
selectInstancesOf in interface com.gs.collections.api.collection.MutableCollection<T>selectInstancesOf in interface com.gs.collections.api.RichIterable<T>selectInstancesOf in interface com.gs.collections.api.set.MutableSet<T>selectInstancesOf in interface com.gs.collections.api.set.MutableSetIterable<T>selectInstancesOf in interface com.gs.collections.api.set.SetIterable<T>selectInstancesOf in interface com.gs.collections.api.set.UnsortedSetIterable<T>public com.gs.collections.api.set.MutableSet<T> withoutAll(Iterable<? extends T> elements)
public boolean equals(Object o)
public int hashCode()
public void writeExternal(ObjectOutput out) throws IOException
writeExternal in interface ExternalizableIOExceptionpublic void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
readExternal in interface ExternalizableIOExceptionClassNotFoundExceptionpublic <V> com.gs.collections.api.multimap.set.MutableSetMultimap<V,T> groupBy(com.gs.collections.api.block.function.Function<? super T,? extends V> function)
groupBy in interface com.gs.collections.api.collection.MutableCollection<T>groupBy in interface com.gs.collections.api.RichIterable<T>groupBy in interface com.gs.collections.api.set.MutableSet<T>groupBy in interface com.gs.collections.api.set.MutableSetIterable<T>groupBy in interface com.gs.collections.api.set.UnsortedSetIterable<T>public <V> com.gs.collections.api.multimap.set.MutableSetMultimap<V,T> groupByEach(com.gs.collections.api.block.function.Function<? super T,? extends Iterable<V>> function)
groupByEach in interface com.gs.collections.api.collection.MutableCollection<T>groupByEach in interface com.gs.collections.api.RichIterable<T>groupByEach in interface com.gs.collections.api.set.MutableSet<T>groupByEach in interface com.gs.collections.api.set.MutableSetIterable<T>groupByEach in interface com.gs.collections.api.set.UnsortedSetIterable<T>public <V> com.gs.collections.api.map.MutableMap<V,T> groupByUniqueKey(com.gs.collections.api.block.function.Function<? super T,? extends V> function)
@Deprecated public <S> com.gs.collections.api.set.MutableSet<com.gs.collections.api.tuple.Pair<T,S>> zip(Iterable<S> that)
OrderedIterable.zip(Iterable) instead.zip in interface com.gs.collections.api.collection.MutableCollection<T>zip in interface com.gs.collections.api.RichIterable<T>zip in interface com.gs.collections.api.set.MutableSet<T>zip in interface com.gs.collections.api.set.MutableSetIterable<T>zip in interface com.gs.collections.api.set.UnsortedSetIterable<T>@Deprecated public com.gs.collections.api.set.MutableSet<com.gs.collections.api.tuple.Pair<T,Integer>> zipWithIndex()
OrderedIterable.zipWithIndex() instead.zipWithIndex in interface com.gs.collections.api.collection.MutableCollection<T>zipWithIndex in interface com.gs.collections.api.RichIterable<T>zipWithIndex in interface com.gs.collections.api.set.MutableSet<T>zipWithIndex in interface com.gs.collections.api.set.MutableSetIterable<T>zipWithIndex in interface com.gs.collections.api.set.SetIterable<T>zipWithIndex in interface com.gs.collections.api.set.UnsortedSetIterable<T>public com.gs.collections.api.RichIterable<com.gs.collections.api.RichIterable<T>> chunk(int size)
chunk in interface com.gs.collections.api.RichIterable<T>public com.gs.collections.api.set.MutableSet<T> union(com.gs.collections.api.set.SetIterable<? extends T> set)
public <R extends Set<T>> R unionInto(com.gs.collections.api.set.SetIterable<? extends T> set, R targetSet)
unionInto in interface com.gs.collections.api.set.SetIterable<T>public com.gs.collections.api.set.MutableSet<T> intersect(com.gs.collections.api.set.SetIterable<? extends T> set)
public <R extends Set<T>> R intersectInto(com.gs.collections.api.set.SetIterable<? extends T> set, R targetSet)
intersectInto in interface com.gs.collections.api.set.SetIterable<T>public com.gs.collections.api.set.MutableSet<T> difference(com.gs.collections.api.set.SetIterable<? extends T> subtrahendSet)
public <R extends Set<T>> R differenceInto(com.gs.collections.api.set.SetIterable<? extends T> subtrahendSet, R targetSet)
differenceInto in interface com.gs.collections.api.set.SetIterable<T>public com.gs.collections.api.set.MutableSet<T> symmetricDifference(com.gs.collections.api.set.SetIterable<? extends T> setB)
public <R extends Set<T>> R symmetricDifferenceInto(com.gs.collections.api.set.SetIterable<? extends T> set, R targetSet)
symmetricDifferenceInto in interface com.gs.collections.api.set.SetIterable<T>public boolean isSubsetOf(com.gs.collections.api.set.SetIterable<? extends T> candidateSuperset)
isSubsetOf in interface com.gs.collections.api.set.SetIterable<T>public boolean isProperSubsetOf(com.gs.collections.api.set.SetIterable<? extends T> candidateSuperset)
isProperSubsetOf in interface com.gs.collections.api.set.SetIterable<T>public com.gs.collections.api.set.MutableSet<com.gs.collections.api.set.UnsortedSetIterable<T>> powerSet()
public <B> com.gs.collections.api.LazyIterable<com.gs.collections.api.tuple.Pair<T,B>> cartesianProduct(com.gs.collections.api.set.SetIterable<B> set)
cartesianProduct in interface com.gs.collections.api.set.SetIterable<T>public com.gs.collections.api.set.ParallelUnsortedSetIterable<T> asParallel(ExecutorService executorService, int batchSize)
Copyright © 2004–2016. All rights reserved.