Uses of Interface
org.eclipse.collections.api.set.primitive.ImmutableIntSet
Packages that use ImmutableIntSet
Package
Description
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 interfaces for set API which enhance the performance and functionality of
Set.This package contains API for mutable and immutable primitive sets.
-
Uses of ImmutableIntSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableIntSetModifier and TypeMethodDescriptionImmutableIntBag.selectUnique()Returns all elements of the bag that have exactly one occurrence. -
Uses of ImmutableIntSet in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive that return ImmutableIntSetModifier and TypeMethodDescriptionImmutableIntSetFactory.empty()ImmutableIntSetFactory.of()Same asImmutableIntSetFactory.empty().ImmutableIntSetFactory.of(int one) Same asImmutableIntSetFactory.with(int).ImmutableIntSetFactory.of(int... items) Same asImmutableIntSetFactory.with(int[]).ImmutableIntSetFactory.ofAll(IntIterable items) ImmutableIntSetFactory.with()Same asImmutableIntSetFactory.empty().ImmutableIntSetFactory.with(int one) ImmutableIntSetFactory.with(int... items) ImmutableIntSetFactory.withAll(IntIterable items) -
Uses of ImmutableIntSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return ImmutableIntSet -
Uses of ImmutableIntSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return ImmutableIntSetModifier and TypeMethodDescriptiondefault ImmutableIntSetImmutableIntSet.difference(IntSet set) Returns the set of all members ofthisthat are not members ofset.default ImmutableIntSetReturns the set of all objects that are members of boththisandset.ImmutableIntSet.newWith(int element) ImmutableIntSet.newWithAll(IntIterable elements) ImmutableIntSet.newWithout(int element) ImmutableIntSet.newWithoutAll(IntIterable elements) ImmutableIntSet.reject(IntPredicate predicate) ImmutableIntSet.select(IntPredicate predicate) default ImmutableIntSetImmutableIntSet.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 ImmutableIntSetImmutableIntSet.tap(IntProcedure procedure) IntSet.toImmutable()Returns an immutable copy of this set.MutableIntSet.toImmutable()Returns an immutable copy of this set.default ImmutableIntSet