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 MutableIntSetIntIterable. 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 MutableIntSetMutableIntBag. 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 MutableIntSetMutableIntSetFactory. empty()MutableIntSetMutableIntSetFactory. of()Same asMutableIntSetFactory.empty().MutableIntSetMutableIntSetFactory. of(int... items)Same asMutableIntSetFactory.with(int[]).MutableIntSetMutableIntSetFactory. ofAll(java.lang.Iterable<java.lang.Integer> iterable)MutableIntSetMutableIntSetFactory. ofAll(java.util.stream.IntStream items)MutableIntSetMutableIntSetFactory. ofAll(IntIterable items)MutableIntSetMutableIntSetFactory. with()Same asMutableIntSetFactory.empty().MutableIntSetMutableIntSetFactory. with(int... items)MutableIntSetMutableIntSetFactory. withAll(java.lang.Iterable<java.lang.Integer> iterable)MutableIntSetMutableIntSetFactory. withAll(java.util.stream.IntStream items)MutableIntSetMutableIntSetFactory. withAll(IntIterable items)default MutableIntSetMutableIntSetFactory. 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 MutableIntSetIntBooleanMap. keySet()Returns a set containing all the keys in this map.MutableIntSetIntByteMap. keySet()Returns a set containing all the keys in this map.MutableIntSetIntCharMap. keySet()Returns a set containing all the keys in this map.MutableIntSetIntDoubleMap. keySet()Returns a set containing all the keys in this map.MutableIntSetIntFloatMap. keySet()Returns a set containing all the keys in this map.MutableIntSetIntIntMap. keySet()Returns a set containing all the keys in this map.MutableIntSetIntLongMap. keySet()Returns a set containing all the keys in this map.MutableIntSetIntObjectMap. keySet()Returns a set containing all the keys in this map.MutableIntSetIntShortMap. 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 MutableIntSetMutableSet. 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 MutableIntSetMutableIntSet. asSynchronized()MutableIntSetMutableIntSet. asUnmodifiable()default MutableIntSetMutableIntSet. difference(IntSet set)Returns the set of all members ofthisthat are not members ofset.default MutableIntSetMutableIntSet. intersect(IntSet set)Returns the set of all objects that are members of boththisandset.default MutableIntSetMutableIntSet. newEmpty()Creates a new empty mutable version of the same Set type.MutableIntSetMutableIntSet. reject(IntPredicate predicate)MutableIntSetMutableIntSet. select(IntPredicate predicate)default MutableIntSetMutableIntSet. symmetricDifference(IntSet set)Returns the set of all objects that are a member of exactly one ofthisandset(elements which are in one of the sets, but not in both).default MutableIntSetMutableIntSet. tap(IntProcedure procedure)default MutableIntSetMutableIntSet. union(IntSet set)MutableIntSetMutableIntSet. with(int element)MutableIntSetMutableIntSet. withAll(IntIterable elements)MutableIntSetMutableIntSet. without(int element)MutableIntSetMutableIntSet. 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 MutableIntSetImmutableIntEmptyBag. toSet()MutableIntSetImmutableIntHashBag. toSet()MutableIntSetImmutableIntSingletonBag. 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 MutableIntSetIntHashBag. selectUnique()MutableIntSetSynchronizedIntBag. selectUnique()MutableIntSetUnmodifiableIntBag. 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 MutableIntSetAbstractSynchronizedIntCollection. toSet()MutableIntSetAbstractUnmodifiableIntCollection. 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 MutableIntSetAbstractLazyIntIterable. toSet()MutableIntSetCollectIntIterable. toSet()MutableIntSetLazyIntIterableAdapter. toSet()MutableIntSetReverseIntIterable. toSet()MutableIntSetSelectIntIterable. 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 MutableIntSetImmutableIntArrayList. toSet()MutableIntSetImmutableIntEmptyList. toSet()MutableIntSetImmutableIntSingletonList. 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 MutableIntSetIntInterval. 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 MutableIntSetImmutableIntBooleanEmptyMap. keySet()MutableIntSetImmutableIntBooleanHashMap. keySet()MutableIntSetImmutableIntBooleanSingletonMap. keySet()MutableIntSetImmutableIntByteEmptyMap. keySet()MutableIntSetImmutableIntByteHashMap. keySet()MutableIntSetImmutableIntByteSingletonMap. keySet()MutableIntSetImmutableIntCharEmptyMap. keySet()MutableIntSetImmutableIntCharHashMap. keySet()MutableIntSetImmutableIntCharSingletonMap. keySet()MutableIntSetImmutableIntDoubleEmptyMap. keySet()MutableIntSetImmutableIntDoubleHashMap. keySet()MutableIntSetImmutableIntDoubleSingletonMap. keySet()MutableIntSetImmutableIntFloatEmptyMap. keySet()MutableIntSetImmutableIntFloatHashMap. keySet()MutableIntSetImmutableIntFloatSingletonMap. keySet()MutableIntSetImmutableIntIntEmptyMap. keySet()MutableIntSetImmutableIntIntHashMap. keySet()MutableIntSetImmutableIntIntSingletonMap. keySet()MutableIntSetImmutableIntLongEmptyMap. keySet()MutableIntSetImmutableIntLongHashMap. keySet()MutableIntSetImmutableIntLongSingletonMap. keySet()MutableIntSetImmutableIntObjectEmptyMap. keySet()MutableIntSetImmutableIntObjectHashMap. keySet()MutableIntSetImmutableIntObjectSingletonMap. keySet()MutableIntSetImmutableIntShortEmptyMap. keySet()MutableIntSetImmutableIntShortHashMap. keySet()MutableIntSetImmutableIntShortSingletonMap. keySet()MutableIntSetImmutableByteIntEmptyMap. toSet()MutableIntSetImmutableByteIntHashMap. toSet()MutableIntSetImmutableByteIntSingletonMap. toSet()MutableIntSetImmutableCharIntEmptyMap. toSet()MutableIntSetImmutableCharIntHashMap. toSet()MutableIntSetImmutableCharIntSingletonMap. toSet()MutableIntSetImmutableDoubleIntEmptyMap. toSet()MutableIntSetImmutableDoubleIntHashMap. toSet()MutableIntSetImmutableDoubleIntSingletonMap. toSet()MutableIntSetImmutableFloatIntEmptyMap. toSet()MutableIntSetImmutableFloatIntHashMap. toSet()MutableIntSetImmutableFloatIntSingletonMap. toSet()MutableIntSetImmutableIntIntEmptyMap. toSet()MutableIntSetImmutableIntIntHashMap. toSet()MutableIntSetImmutableIntIntSingletonMap. toSet()MutableIntSetImmutableLongIntEmptyMap. toSet()MutableIntSetImmutableLongIntHashMap. toSet()MutableIntSetImmutableLongIntSingletonMap. toSet()MutableIntSetImmutableObjectIntEmptyMap. toSet()MutableIntSetImmutableObjectIntHashMap. toSet()MutableIntSetImmutableObjectIntSingletonMap. toSet()MutableIntSetImmutableShortIntEmptyMap. toSet()MutableIntSetImmutableShortIntHashMap. toSet()MutableIntSetImmutableShortIntSingletonMap. 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 classAbstractMutableIntKeySetThis file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.private classIntBooleanHashMap.KeySetprivate classIntByteHashMap.KeySetprivate classIntCharHashMap.KeySetprivate classIntDoubleHashMap.KeySetprivate classIntFloatHashMap.KeySetprivate classIntIntHashMap.KeySetprivate classIntLongHashMap.KeySetprivate classIntObjectHashMap.KeySetprivate classIntShortHashMap.KeySetMethods in org.eclipse.collections.impl.map.mutable.primitive that return MutableIntSet Modifier and Type Method Description MutableIntSetAbstractMutableIntKeySet. asSynchronized()MutableIntSetAbstractMutableIntKeySet. asUnmodifiable()MutableIntSetIntBooleanHashMap. keySet()MutableIntSetIntByteHashMap. keySet()MutableIntSetIntCharHashMap. keySet()MutableIntSetIntDoubleHashMap. keySet()MutableIntSetIntFloatHashMap. keySet()MutableIntSetIntIntHashMap. keySet()MutableIntSetIntLongHashMap. keySet()MutableIntSetIntObjectHashMap. keySet()MutableIntSetIntShortHashMap. keySet()MutableIntSetSynchronizedIntBooleanMap. keySet()MutableIntSetSynchronizedIntByteMap. keySet()MutableIntSetSynchronizedIntCharMap. keySet()MutableIntSetSynchronizedIntDoubleMap. keySet()MutableIntSetSynchronizedIntFloatMap. keySet()MutableIntSetSynchronizedIntIntMap. keySet()MutableIntSetSynchronizedIntLongMap. keySet()MutableIntSetSynchronizedIntObjectMap. keySet()MutableIntSetSynchronizedIntShortMap. keySet()MutableIntSetUnmodifiableIntBooleanMap. keySet()MutableIntSetUnmodifiableIntByteMap. keySet()MutableIntSetUnmodifiableIntCharMap. keySet()MutableIntSetUnmodifiableIntDoubleMap. keySet()MutableIntSetUnmodifiableIntFloatMap. keySet()MutableIntSetUnmodifiableIntIntMap. keySet()MutableIntSetUnmodifiableIntLongMap. keySet()MutableIntSetUnmodifiableIntObjectMap. keySet()MutableIntSetUnmodifiableIntShortMap. keySet()MutableIntSetIntBooleanHashMap.KeySet. newEmpty()MutableIntSetIntByteHashMap.KeySet. newEmpty()MutableIntSetIntCharHashMap.KeySet. newEmpty()MutableIntSetIntDoubleHashMap.KeySet. newEmpty()MutableIntSetIntFloatHashMap.KeySet. newEmpty()MutableIntSetIntIntHashMap.KeySet. newEmpty()MutableIntSetIntLongHashMap.KeySet. newEmpty()MutableIntSetIntObjectHashMap.KeySet. newEmpty()MutableIntSetIntShortHashMap.KeySet. newEmpty()MutableIntSetAbstractMutableIntKeySet. reject(IntPredicate predicate)MutableIntSetAbstractMutableIntKeySet. select(IntPredicate predicate)MutableIntSetAbstractMutableIntKeySet. toSet()MutableIntSetAbstractMutableIntValuesMap.AbstractIntValuesCollection. toSet()MutableIntSetIntBooleanHashMap.KeysView. toSet()MutableIntSetObjectIntHashMap. toSet()MutableIntSetObjectIntHashMap.ValuesCollection. toSet()MutableIntSetObjectIntHashMapWithHashingStrategy. toSet()MutableIntSetObjectIntHashMapWithHashingStrategy.ValuesCollection. toSet()MutableIntSetSynchronizedByteIntMap. toSet()MutableIntSetSynchronizedCharIntMap. toSet()MutableIntSetSynchronizedDoubleIntMap. toSet()MutableIntSetSynchronizedFloatIntMap. toSet()MutableIntSetSynchronizedIntIntMap. toSet()MutableIntSetSynchronizedLongIntMap. toSet()MutableIntSetSynchronizedObjectIntMap. toSet()MutableIntSetSynchronizedShortIntMap. toSet()MutableIntSetUnmodifiableByteIntMap. toSet()MutableIntSetUnmodifiableCharIntMap. toSet()MutableIntSetUnmodifiableDoubleIntMap. toSet()MutableIntSetUnmodifiableFloatIntMap. toSet()MutableIntSetUnmodifiableIntIntMap. toSet()MutableIntSetUnmodifiableLongIntMap. toSet()MutableIntSetUnmodifiableObjectIntMap. toSet()MutableIntSetUnmodifiableShortIntMap. toSet()MutableIntSetAbstractMutableIntKeySet. with(int element)MutableIntSetAbstractMutableIntKeySet. withAll(IntIterable elements)MutableIntSetAbstractMutableIntKeySet. without(int element)MutableIntSetAbstractMutableIntKeySet. 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 MutableIntSetAbstractIntIterable. toSet()MutableIntSetSynchronizedIntIterable. 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 MutableIntSetImmutableIntEmptySet. toSet()MutableIntSetImmutableIntSingletonSet. 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 MutableIntSetMultiReaderUnifiedSet. collectInt(IntFunction<? super T> intFunction)MutableIntSetMultiReaderUnifiedSet.UntouchableMutableSet. collectInt(IntFunction<? super T> intFunction)MutableIntSetSynchronizedMutableSet. collectInt(IntFunction<? super T> intFunction)MutableIntSetUnmodifiableMutableSet. 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 classIntHashSetThis file was automatically generated from template file primitiveHashSet.stg.classSynchronizedIntSetA synchronized view of aMutableIntSet.classUnmodifiableIntSetThis file was automatically generated from template file unmodifiablePrimitiveSet.stg.Fields in org.eclipse.collections.impl.set.mutable.primitive declared as MutableIntSet Modifier and Type Field Description private MutableIntSetBoxedMutableIntSet. delegateMethods in org.eclipse.collections.impl.set.mutable.primitive that return MutableIntSet Modifier and Type Method Description MutableIntSetIntHashSet. asSynchronized()MutableIntSetSynchronizedIntSet. asSynchronized()MutableIntSetUnmodifiableIntSet. asSynchronized()MutableIntSetIntHashSet. asUnmodifiable()MutableIntSetSynchronizedIntSet. asUnmodifiable()MutableIntSetUnmodifiableIntSet. asUnmodifiable()MutableIntSetMutableIntSetFactoryImpl. empty()private MutableIntSetSynchronizedIntSet. getMutableIntSet()private MutableIntSetUnmodifiableIntSet. getMutableIntSet()MutableIntSetSynchronizedIntSet. newEmpty()MutableIntSetUnmodifiableIntSet. newEmpty()MutableIntSetMutableIntSetFactoryImpl. of()MutableIntSetMutableIntSetFactoryImpl. of(int... items)MutableIntSetMutableIntSetFactoryImpl. ofAll(java.lang.Iterable<java.lang.Integer> iterable)MutableIntSetMutableIntSetFactoryImpl. ofAll(java.util.stream.IntStream items)MutableIntSetMutableIntSetFactoryImpl. ofAll(IntIterable items)MutableIntSetSynchronizedIntSet. reject(IntPredicate predicate)MutableIntSetUnmodifiableIntSet. reject(IntPredicate predicate)MutableIntSetSynchronizedIntSet. select(IntPredicate predicate)MutableIntSetUnmodifiableIntSet. select(IntPredicate predicate)MutableIntSetMutableIntSetFactoryImpl. with()MutableIntSetMutableIntSetFactoryImpl. with(int... items)MutableIntSetMutableIntSetFactoryImpl. withAll(java.lang.Iterable<java.lang.Integer> iterable)MutableIntSetMutableIntSetFactoryImpl. withAll(java.util.stream.IntStream items)MutableIntSetMutableIntSetFactoryImpl. withAll(IntIterable items)MutableIntSetMutableIntSetFactoryImpl. withInitialCapacity(int capacity)Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type MutableIntSet Modifier and Type Method Description static SynchronizedIntSetSynchronizedIntSet. of(MutableIntSet set)This method will take a MutableIntSet and wrap it directly in a SynchronizedIntSet.static SynchronizedIntSetSynchronizedIntSet. of(MutableIntSet set, java.lang.Object lock)This method will take a MutableIntSet and wrap it directly in a SynchronizedIntSet.static UnmodifiableIntSetUnmodifiableIntSet. 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 BoxedMutableIntSet(MutableIntSet delegate)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 MutableIntSetImmutableIntEmptyStack. toSet()MutableIntSetImmutableIntSingletonStack. 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 MutableIntSetSynchronizedIntStack. toSet()MutableIntSetUnmodifiableIntStack. 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 MutableIntSetAbstractIntStack. 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 MutableIntSetPrimitiveStreams. 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 MutableIntSetCodePointAdapter. toSet()MutableIntSetCodePointList. toSet()
-