Uses of Interface
org.eclipse.collections.api.set.primitive.ImmutableIntSet
-
Packages that use ImmutableIntSet Package Description 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.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 ImmutableIntSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableIntSet Modifier and Type Method Description ImmutableIntSetImmutableIntBag. 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 ImmutableIntSet Modifier and Type Method Description ImmutableIntSetImmutableIntSetFactory. empty()ImmutableIntSetImmutableIntSetFactory. of()Same asImmutableIntSetFactory.empty().ImmutableIntSetImmutableIntSetFactory. of(int one)Same asImmutableIntSetFactory.with(int).ImmutableIntSetImmutableIntSetFactory. of(int... items)Same asImmutableIntSetFactory.with(int[]).ImmutableIntSetImmutableIntSetFactory. ofAll(Iterable<Integer> iterable)ImmutableIntSetImmutableIntSetFactory. ofAll(IntStream items)ImmutableIntSetImmutableIntSetFactory. ofAll(IntIterable items)ImmutableIntSetImmutableIntSetFactory. with()Same asImmutableIntSetFactory.empty().ImmutableIntSetImmutableIntSetFactory. with(int one)ImmutableIntSetImmutableIntSetFactory. with(int... items)ImmutableIntSetImmutableIntSetFactory. withAll(Iterable<Integer> iterable)ImmutableIntSetImmutableIntSetFactory. withAll(IntStream items)ImmutableIntSetImmutableIntSetFactory. withAll(IntIterable items) -
Uses of ImmutableIntSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return ImmutableIntSet Modifier and Type Method Description ImmutableIntSetImmutableSet. collectInt(IntFunction<? super T> intFunction) -
Uses of ImmutableIntSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return ImmutableIntSet Modifier and Type Method Description default ImmutableIntSetImmutableIntSet. difference(IntSet set)Returns the set of all members ofthisthat are not members ofset.default ImmutableIntSetImmutableIntSet. intersect(IntSet set)Returns the set of all objects that are members of boththisandset.ImmutableIntSetImmutableIntSet. newWith(int element)ImmutableIntSetImmutableIntSet. newWithAll(IntIterable elements)ImmutableIntSetImmutableIntSet. newWithout(int element)ImmutableIntSetImmutableIntSet. newWithoutAll(IntIterable elements)ImmutableIntSetImmutableIntSet. reject(IntPredicate predicate)ImmutableIntSetImmutableIntSet. 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)ImmutableIntSetIntSet. toImmutable()Returns an immutable copy of this set.ImmutableIntSetMutableIntSet. toImmutable()Returns an immutable copy of this set.default ImmutableIntSetImmutableIntSet. union(IntSet set)
-