Uses of Interface
org.eclipse.collections.api.set.primitive.MutableIntSet
-
Packages that use MutableIntSet Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.factory.set.primitive This package contains factory API for creating primitive set instances.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.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.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.primitive This package contains implementations of the primitive list interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.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.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.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.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.stack.primitive org.eclipse.collections.impl.stream org.eclipse.collections.impl.string.immutable -
-
Uses of MutableIntSet in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableIntSet Modifier and Type Method Description MutableIntSet
IntIterable. toSet()
Converts the IntIterable to a new MutableIntSet. -
Uses of MutableIntSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return MutableIntSet Modifier and Type Method Description MutableIntSet
MutableIntBag. selectUnique()
Returns all elements of the bag that have exactly one occurrence. -
Uses of MutableIntSet in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive that return MutableIntSet Modifier and Type Method Description MutableIntSet
MutableIntSetFactory. empty()
MutableIntSet
MutableIntSetFactory. of()
Same asMutableIntSetFactory.empty()
.MutableIntSet
MutableIntSetFactory. of(int... items)
Same asMutableIntSetFactory.with(int[])
.MutableIntSet
MutableIntSetFactory. ofAll(java.lang.Iterable<java.lang.Integer> iterable)
MutableIntSet
MutableIntSetFactory. ofAll(java.util.stream.IntStream items)
MutableIntSet
MutableIntSetFactory. ofAll(IntIterable items)
MutableIntSet
MutableIntSetFactory. with()
Same asMutableIntSetFactory.empty()
.MutableIntSet
MutableIntSetFactory. with(int... items)
MutableIntSet
MutableIntSetFactory. withAll(java.lang.Iterable<java.lang.Integer> iterable)
MutableIntSet
MutableIntSetFactory. withAll(java.util.stream.IntStream items)
MutableIntSet
MutableIntSetFactory. withAll(IntIterable items)
default MutableIntSet
MutableIntSetFactory. withInitialCapacity(int capacity)
Same asMutableIntSetFactory.empty()
. -
Uses of MutableIntSet in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableIntSet Modifier and Type Method Description MutableIntSet
IntBooleanMap. keySet()
Returns a set containing all the keys in this map.MutableIntSet
IntByteMap. keySet()
Returns a set containing all the keys in this map.MutableIntSet
IntCharMap. keySet()
Returns a set containing all the keys in this map.MutableIntSet
IntDoubleMap. keySet()
Returns a set containing all the keys in this map.MutableIntSet
IntFloatMap. keySet()
Returns a set containing all the keys in this map.MutableIntSet
IntIntMap. keySet()
Returns a set containing all the keys in this map.MutableIntSet
IntLongMap. keySet()
Returns a set containing all the keys in this map.MutableIntSet
IntObjectMap. keySet()
Returns a set containing all the keys in this map.MutableIntSet
IntShortMap. keySet()
Returns a set containing all the keys in this map. -
Uses of MutableIntSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return MutableIntSet Modifier and Type Method Description default MutableIntSet
MutableSet. collectInt(IntFunction<? super T> intFunction)
-
Uses of MutableIntSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return MutableIntSet Modifier and Type Method Description MutableIntSet
MutableIntSet. asSynchronized()
MutableIntSet
MutableIntSet. asUnmodifiable()
default MutableIntSet
MutableIntSet. difference(IntSet set)
Returns the set of all members ofthis
that are not members ofset
.default MutableIntSet
MutableIntSet. intersect(IntSet set)
Returns the set of all objects that are members of boththis
andset
.default MutableIntSet
MutableIntSet. newEmpty()
Creates a new empty mutable version of the same Set type.MutableIntSet
MutableIntSet. reject(IntPredicate predicate)
MutableIntSet
MutableIntSet. select(IntPredicate predicate)
default MutableIntSet
MutableIntSet. symmetricDifference(IntSet set)
Returns the set of all objects that are a member of exactly one ofthis
andset
(elements which are in one of the sets, but not in both).default MutableIntSet
MutableIntSet. tap(IntProcedure procedure)
default MutableIntSet
MutableIntSet. union(IntSet set)
MutableIntSet
MutableIntSet. with(int element)
MutableIntSet
MutableIntSet. withAll(IntIterable elements)
MutableIntSet
MutableIntSet. without(int element)
MutableIntSet
MutableIntSet. withoutAll(IntIterable elements)
-
Uses of MutableIntSet in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return MutableIntSet Modifier and Type Method Description MutableIntSet
ImmutableIntEmptyBag. toSet()
MutableIntSet
ImmutableIntHashBag. toSet()
MutableIntSet
ImmutableIntSingletonBag. toSet()
-
Uses of MutableIntSet in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive that return MutableIntSet Modifier and Type Method Description MutableIntSet
IntHashBag. selectUnique()
MutableIntSet
SynchronizedIntBag. selectUnique()
MutableIntSet
UnmodifiableIntBag. selectUnique()
-
Uses of MutableIntSet in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableIntSet Modifier and Type Method Description MutableIntSet
AbstractSynchronizedIntCollection. toSet()
MutableIntSet
AbstractUnmodifiableIntCollection. toSet()
-
Uses of MutableIntSet in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableIntSet Modifier and Type Method Description MutableIntSet
AbstractLazyIntIterable. toSet()
MutableIntSet
CollectIntIterable. toSet()
MutableIntSet
LazyIntIterableAdapter. toSet()
MutableIntSet
ReverseIntIterable. toSet()
MutableIntSet
SelectIntIterable. toSet()
-
Uses of MutableIntSet in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableIntSet Modifier and Type Method Description MutableIntSet
ImmutableIntArrayList. toSet()
MutableIntSet
ImmutableIntEmptyList. toSet()
MutableIntSet
ImmutableIntSingletonList. toSet()
-
Uses of MutableIntSet in org.eclipse.collections.impl.list.primitive
Methods in org.eclipse.collections.impl.list.primitive that return MutableIntSet Modifier and Type Method Description MutableIntSet
IntInterval. toSet()
-
Uses of MutableIntSet in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableIntSet Modifier and Type Method Description MutableIntSet
ImmutableIntBooleanEmptyMap. keySet()
MutableIntSet
ImmutableIntBooleanHashMap. keySet()
MutableIntSet
ImmutableIntBooleanSingletonMap. keySet()
MutableIntSet
ImmutableIntByteEmptyMap. keySet()
MutableIntSet
ImmutableIntByteHashMap. keySet()
MutableIntSet
ImmutableIntByteSingletonMap. keySet()
MutableIntSet
ImmutableIntCharEmptyMap. keySet()
MutableIntSet
ImmutableIntCharHashMap. keySet()
MutableIntSet
ImmutableIntCharSingletonMap. keySet()
MutableIntSet
ImmutableIntDoubleEmptyMap. keySet()
MutableIntSet
ImmutableIntDoubleHashMap. keySet()
MutableIntSet
ImmutableIntDoubleSingletonMap. keySet()
MutableIntSet
ImmutableIntFloatEmptyMap. keySet()
MutableIntSet
ImmutableIntFloatHashMap. keySet()
MutableIntSet
ImmutableIntFloatSingletonMap. keySet()
MutableIntSet
ImmutableIntIntEmptyMap. keySet()
MutableIntSet
ImmutableIntIntHashMap. keySet()
MutableIntSet
ImmutableIntIntSingletonMap. keySet()
MutableIntSet
ImmutableIntLongEmptyMap. keySet()
MutableIntSet
ImmutableIntLongHashMap. keySet()
MutableIntSet
ImmutableIntLongSingletonMap. keySet()
MutableIntSet
ImmutableIntObjectEmptyMap. keySet()
MutableIntSet
ImmutableIntObjectHashMap. keySet()
MutableIntSet
ImmutableIntObjectSingletonMap. keySet()
MutableIntSet
ImmutableIntShortEmptyMap. keySet()
MutableIntSet
ImmutableIntShortHashMap. keySet()
MutableIntSet
ImmutableIntShortSingletonMap. keySet()
MutableIntSet
ImmutableByteIntEmptyMap. toSet()
MutableIntSet
ImmutableByteIntHashMap. toSet()
MutableIntSet
ImmutableByteIntSingletonMap. toSet()
MutableIntSet
ImmutableCharIntEmptyMap. toSet()
MutableIntSet
ImmutableCharIntHashMap. toSet()
MutableIntSet
ImmutableCharIntSingletonMap. toSet()
MutableIntSet
ImmutableDoubleIntEmptyMap. toSet()
MutableIntSet
ImmutableDoubleIntHashMap. toSet()
MutableIntSet
ImmutableDoubleIntSingletonMap. toSet()
MutableIntSet
ImmutableFloatIntEmptyMap. toSet()
MutableIntSet
ImmutableFloatIntHashMap. toSet()
MutableIntSet
ImmutableFloatIntSingletonMap. toSet()
MutableIntSet
ImmutableIntIntEmptyMap. toSet()
MutableIntSet
ImmutableIntIntHashMap. toSet()
MutableIntSet
ImmutableIntIntSingletonMap. toSet()
MutableIntSet
ImmutableLongIntEmptyMap. toSet()
MutableIntSet
ImmutableLongIntHashMap. toSet()
MutableIntSet
ImmutableLongIntSingletonMap. toSet()
MutableIntSet
ImmutableObjectIntEmptyMap. toSet()
MutableIntSet
ImmutableObjectIntHashMap. toSet()
MutableIntSet
ImmutableObjectIntSingletonMap. toSet()
MutableIntSet
ImmutableShortIntEmptyMap. toSet()
MutableIntSet
ImmutableShortIntHashMap. toSet()
MutableIntSet
ImmutableShortIntSingletonMap. toSet()
-
Uses of MutableIntSet in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableIntSet Modifier and Type Class Description class
AbstractMutableIntKeySet
This file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.private class
IntBooleanHashMap.KeySet
private class
IntByteHashMap.KeySet
private class
IntCharHashMap.KeySet
private class
IntDoubleHashMap.KeySet
private class
IntFloatHashMap.KeySet
private class
IntIntHashMap.KeySet
private class
IntLongHashMap.KeySet
private class
IntObjectHashMap.KeySet
private class
IntShortHashMap.KeySet
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableIntSet Modifier and Type Method Description MutableIntSet
AbstractMutableIntKeySet. asSynchronized()
MutableIntSet
AbstractMutableIntKeySet. asUnmodifiable()
MutableIntSet
IntBooleanHashMap. keySet()
MutableIntSet
IntByteHashMap. keySet()
MutableIntSet
IntCharHashMap. keySet()
MutableIntSet
IntDoubleHashMap. keySet()
MutableIntSet
IntFloatHashMap. keySet()
MutableIntSet
IntIntHashMap. keySet()
MutableIntSet
IntLongHashMap. keySet()
MutableIntSet
IntObjectHashMap. keySet()
MutableIntSet
IntShortHashMap. keySet()
MutableIntSet
SynchronizedIntBooleanMap. keySet()
MutableIntSet
SynchronizedIntByteMap. keySet()
MutableIntSet
SynchronizedIntCharMap. keySet()
MutableIntSet
SynchronizedIntDoubleMap. keySet()
MutableIntSet
SynchronizedIntFloatMap. keySet()
MutableIntSet
SynchronizedIntIntMap. keySet()
MutableIntSet
SynchronizedIntLongMap. keySet()
MutableIntSet
SynchronizedIntObjectMap. keySet()
MutableIntSet
SynchronizedIntShortMap. keySet()
MutableIntSet
UnmodifiableIntBooleanMap. keySet()
MutableIntSet
UnmodifiableIntByteMap. keySet()
MutableIntSet
UnmodifiableIntCharMap. keySet()
MutableIntSet
UnmodifiableIntDoubleMap. keySet()
MutableIntSet
UnmodifiableIntFloatMap. keySet()
MutableIntSet
UnmodifiableIntIntMap. keySet()
MutableIntSet
UnmodifiableIntLongMap. keySet()
MutableIntSet
UnmodifiableIntObjectMap. keySet()
MutableIntSet
UnmodifiableIntShortMap. keySet()
MutableIntSet
IntBooleanHashMap.KeySet. newEmpty()
MutableIntSet
IntByteHashMap.KeySet. newEmpty()
MutableIntSet
IntCharHashMap.KeySet. newEmpty()
MutableIntSet
IntDoubleHashMap.KeySet. newEmpty()
MutableIntSet
IntFloatHashMap.KeySet. newEmpty()
MutableIntSet
IntIntHashMap.KeySet. newEmpty()
MutableIntSet
IntLongHashMap.KeySet. newEmpty()
MutableIntSet
IntObjectHashMap.KeySet. newEmpty()
MutableIntSet
IntShortHashMap.KeySet. newEmpty()
MutableIntSet
AbstractMutableIntKeySet. reject(IntPredicate predicate)
MutableIntSet
AbstractMutableIntKeySet. select(IntPredicate predicate)
MutableIntSet
AbstractMutableIntKeySet. toSet()
MutableIntSet
AbstractMutableIntValuesMap.AbstractIntValuesCollection. toSet()
MutableIntSet
IntBooleanHashMap.KeysView. toSet()
MutableIntSet
ObjectIntHashMap. toSet()
MutableIntSet
ObjectIntHashMap.ValuesCollection. toSet()
MutableIntSet
ObjectIntHashMapWithHashingStrategy. toSet()
MutableIntSet
ObjectIntHashMapWithHashingStrategy.ValuesCollection. toSet()
MutableIntSet
SynchronizedByteIntMap. toSet()
MutableIntSet
SynchronizedCharIntMap. toSet()
MutableIntSet
SynchronizedDoubleIntMap. toSet()
MutableIntSet
SynchronizedFloatIntMap. toSet()
MutableIntSet
SynchronizedIntIntMap. toSet()
MutableIntSet
SynchronizedLongIntMap. toSet()
MutableIntSet
SynchronizedObjectIntMap. toSet()
MutableIntSet
SynchronizedShortIntMap. toSet()
MutableIntSet
UnmodifiableByteIntMap. toSet()
MutableIntSet
UnmodifiableCharIntMap. toSet()
MutableIntSet
UnmodifiableDoubleIntMap. toSet()
MutableIntSet
UnmodifiableFloatIntMap. toSet()
MutableIntSet
UnmodifiableIntIntMap. toSet()
MutableIntSet
UnmodifiableLongIntMap. toSet()
MutableIntSet
UnmodifiableObjectIntMap. toSet()
MutableIntSet
UnmodifiableShortIntMap. toSet()
MutableIntSet
AbstractMutableIntKeySet. with(int element)
MutableIntSet
AbstractMutableIntKeySet. withAll(IntIterable elements)
MutableIntSet
AbstractMutableIntKeySet. without(int element)
MutableIntSet
AbstractMutableIntKeySet. withoutAll(IntIterable elements)
-
Uses of MutableIntSet in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableIntSet Modifier and Type Method Description MutableIntSet
AbstractIntIterable. toSet()
MutableIntSet
SynchronizedIntIterable. toSet()
-
Uses of MutableIntSet in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableIntSet Modifier and Type Method Description MutableIntSet
ImmutableIntEmptySet. toSet()
MutableIntSet
ImmutableIntSingletonSet. toSet()
-
Uses of MutableIntSet in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable that return MutableIntSet Modifier and Type Method Description MutableIntSet
MultiReaderUnifiedSet. collectInt(IntFunction<? super T> intFunction)
MutableIntSet
MultiReaderUnifiedSet.UntouchableMutableSet. collectInt(IntFunction<? super T> intFunction)
MutableIntSet
SynchronizedMutableSet. collectInt(IntFunction<? super T> intFunction)
MutableIntSet
UnmodifiableMutableSet. collectInt(IntFunction<? super T> intFunction)
-
Uses of MutableIntSet in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement MutableIntSet Modifier and Type Class Description class
IntHashSet
This file was automatically generated from template file primitiveHashSet.stg.class
SynchronizedIntSet
A synchronized view of aMutableIntSet
.class
UnmodifiableIntSet
This file was automatically generated from template file unmodifiablePrimitiveSet.stg.Methods in org.eclipse.collections.impl.set.mutable.primitive that return MutableIntSet Modifier and Type Method Description MutableIntSet
IntHashSet. asSynchronized()
MutableIntSet
SynchronizedIntSet. asSynchronized()
MutableIntSet
UnmodifiableIntSet. asSynchronized()
MutableIntSet
IntHashSet. asUnmodifiable()
MutableIntSet
SynchronizedIntSet. asUnmodifiable()
MutableIntSet
UnmodifiableIntSet. asUnmodifiable()
MutableIntSet
MutableIntSetFactoryImpl. empty()
private MutableIntSet
SynchronizedIntSet. getMutableIntSet()
private MutableIntSet
UnmodifiableIntSet. getMutableIntSet()
MutableIntSet
SynchronizedIntSet. newEmpty()
MutableIntSet
UnmodifiableIntSet. newEmpty()
MutableIntSet
MutableIntSetFactoryImpl. of()
MutableIntSet
MutableIntSetFactoryImpl. of(int... items)
MutableIntSet
MutableIntSetFactoryImpl. ofAll(java.lang.Iterable<java.lang.Integer> iterable)
MutableIntSet
MutableIntSetFactoryImpl. ofAll(java.util.stream.IntStream items)
MutableIntSet
MutableIntSetFactoryImpl. ofAll(IntIterable items)
MutableIntSet
SynchronizedIntSet. reject(IntPredicate predicate)
MutableIntSet
UnmodifiableIntSet. reject(IntPredicate predicate)
MutableIntSet
SynchronizedIntSet. select(IntPredicate predicate)
MutableIntSet
UnmodifiableIntSet. select(IntPredicate predicate)
MutableIntSet
MutableIntSetFactoryImpl. with()
MutableIntSet
MutableIntSetFactoryImpl. with(int... items)
MutableIntSet
MutableIntSetFactoryImpl. withAll(java.lang.Iterable<java.lang.Integer> iterable)
MutableIntSet
MutableIntSetFactoryImpl. withAll(java.util.stream.IntStream items)
MutableIntSet
MutableIntSetFactoryImpl. withAll(IntIterable items)
MutableIntSet
MutableIntSetFactoryImpl. withInitialCapacity(int capacity)
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type MutableIntSet Modifier and Type Method Description static SynchronizedIntSet
SynchronizedIntSet. of(MutableIntSet set)
This method will take a MutableIntSet and wrap it directly in a SynchronizedIntSet.static SynchronizedIntSet
SynchronizedIntSet. of(MutableIntSet set, java.lang.Object lock)
This method will take a MutableIntSet and wrap it directly in a SynchronizedIntSet.static UnmodifiableIntSet
UnmodifiableIntSet. of(MutableIntSet set)
This method will take a MutableIntSet and wrap it directly in a UnmodifiableIntSet.Constructors in org.eclipse.collections.impl.set.mutable.primitive with parameters of type MutableIntSet Constructor Description SynchronizedIntSet(MutableIntSet set)
SynchronizedIntSet(MutableIntSet set, java.lang.Object newLock)
UnmodifiableIntSet(MutableIntSet set)
-
Uses of MutableIntSet in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return MutableIntSet Modifier and Type Method Description MutableIntSet
ImmutableIntEmptyStack. toSet()
MutableIntSet
ImmutableIntSingletonStack. toSet()
-
Uses of MutableIntSet in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableIntSet Modifier and Type Method Description MutableIntSet
SynchronizedIntStack. toSet()
MutableIntSet
UnmodifiableIntStack. toSet()
-
Uses of MutableIntSet in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableIntSet Modifier and Type Method Description MutableIntSet
AbstractIntStack. toSet()
-
Uses of MutableIntSet in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return MutableIntSet Modifier and Type Method Description static MutableIntSet
PrimitiveStreams. mIntSet(java.util.stream.IntStream stream)
-
Uses of MutableIntSet in org.eclipse.collections.impl.string.immutable
Methods in org.eclipse.collections.impl.string.immutable that return MutableIntSet Modifier and Type Method Description MutableIntSet
CodePointAdapter. toSet()
MutableIntSet
CodePointList. toSet()
-