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. -
-
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(Iterable<Integer> iterable)MutableIntSetMutableIntSetFactory. ofAll(IntStream items)MutableIntSetMutableIntSetFactory. ofAll(IntIterable items)MutableIntSetMutableIntSetFactory. with()Same asMutableIntSetFactory.empty().MutableIntSetMutableIntSetFactory. with(int... items)MutableIntSetMutableIntSetFactory. withAll(Iterable<Integer> iterable)MutableIntSetMutableIntSetFactory. withAll(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)
-