Uses of Interface
org.eclipse.collections.api.set.primitive.MutableIntSet
Packages that use MutableIntSet
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains factory API for creating primitive set instances.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains interfaces for set API which enhance the performance and functionality of
Set.This package contains API for mutable and immutable primitive sets.
-
Uses of MutableIntSet in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableIntSetModifier and TypeMethodDescriptionIntIterable.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 MutableIntSetModifier and TypeMethodDescriptionMutableIntBag.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 MutableIntSetModifier and TypeMethodDescriptionMutableIntSetFactory.empty()MutableIntSetFactory.of()Same asMutableIntSetFactory.empty().MutableIntSetFactory.of(int... items) Same asMutableIntSetFactory.with(int[]).MutableIntSetFactory.ofAll(IntIterable items) MutableIntSetFactory.with()Same asMutableIntSetFactory.empty().MutableIntSetFactory.with(int... items) MutableIntSetFactory.withAll(IntIterable items) default MutableIntSetMutableIntSetFactory.withInitialCapacity(int capacity) Same asMutableIntSetFactory.empty(). but takes in an initial capacity -
Uses of MutableIntSet in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableIntSetModifier and TypeMethodDescriptionIntBooleanMap.keySet()Returns a set containing all the keys in this map.IntByteMap.keySet()Returns a set containing all the keys in this map.IntCharMap.keySet()Returns a set containing all the keys in this map.IntDoubleMap.keySet()Returns a set containing all the keys in this map.IntFloatMap.keySet()Returns a set containing all the keys in this map.IntIntMap.keySet()Returns a set containing all the keys in this map.IntLongMap.keySet()Returns a set containing all the keys in this map.IntObjectMap.keySet()Returns a set containing all the keys in this map.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 MutableIntSetModifier and TypeMethodDescriptiondefault 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 MutableIntSetModifier and TypeMethodDescriptionMutableIntSet.asSynchronized()MutableIntSet.asUnmodifiable()default MutableIntSetMutableIntSet.difference(IntSet set) Returns the set of all members ofthisthat are not members ofset.default MutableIntSetReturns the set of all objects that are members of boththisandset.default MutableIntSetMutableIntSet.newEmpty()Creates a new empty mutable version of the same Set type.MutableIntSet.reject(IntPredicate predicate) MutableIntSet.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.with(int element) MutableIntSet.withAll(IntIterable elements) MutableIntSet.without(int element) MutableIntSet.withoutAll(IntIterable elements)