| 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 of
Set. |
| org.eclipse.collections.api.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableIntSet |
ImmutableIntBag.selectUnique()
Returns all elements of the bag that have exactly one occurrence.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableIntSet |
ImmutableIntSetFactory.empty() |
ImmutableIntSet |
ImmutableIntSetFactory.of()
Same as
ImmutableIntSetFactory.empty(). |
ImmutableIntSet |
ImmutableIntSetFactory.of(int... items)
Same as
ImmutableIntSetFactory.with(int[]). |
ImmutableIntSet |
ImmutableIntSetFactory.of(int one)
Same as
ImmutableIntSetFactory.with(int). |
ImmutableIntSet |
ImmutableIntSetFactory.ofAll(IntIterable items)
|
ImmutableIntSet |
ImmutableIntSetFactory.ofAll(IntStream items) |
ImmutableIntSet |
ImmutableIntSetFactory.ofAll(Iterable<Integer> iterable)
|
ImmutableIntSet |
ImmutableIntSetFactory.with()
Same as
ImmutableIntSetFactory.empty(). |
ImmutableIntSet |
ImmutableIntSetFactory.with(int... items) |
ImmutableIntSet |
ImmutableIntSetFactory.with(int one) |
ImmutableIntSet |
ImmutableIntSetFactory.withAll(IntIterable items) |
ImmutableIntSet |
ImmutableIntSetFactory.withAll(IntStream items) |
ImmutableIntSet |
ImmutableIntSetFactory.withAll(Iterable<Integer> iterable) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableIntSet |
ImmutableSet.collectInt(IntFunction<? super T> intFunction) |
| Modifier and Type | Method and Description |
|---|---|
default ImmutableIntSet |
ImmutableIntSet.difference(IntSet set)
Returns the set of all members of
this that are not members of set. |
default ImmutableIntSet |
ImmutableIntSet.intersect(IntSet set)
Returns the set of all objects that are members of both
this and set. |
ImmutableIntSet |
ImmutableIntSet.newWith(int element) |
ImmutableIntSet |
ImmutableIntSet.newWithAll(IntIterable elements) |
ImmutableIntSet |
ImmutableIntSet.newWithout(int element) |
ImmutableIntSet |
ImmutableIntSet.newWithoutAll(IntIterable elements) |
ImmutableIntSet |
ImmutableIntSet.reject(IntPredicate predicate) |
ImmutableIntSet |
ImmutableIntSet.select(IntPredicate predicate) |
default ImmutableIntSet |
ImmutableIntSet.symmetricDifference(IntSet set)
Returns the set of all objects that are a member of exactly one of
this and set (elements which
are in one of the sets, but not in both). |
default ImmutableIntSet |
ImmutableIntSet.tap(IntProcedure procedure) |
ImmutableIntSet |
IntSet.toImmutable()
Returns an immutable copy of this set.
|
ImmutableIntSet |
MutableIntSet.toImmutable()
Returns an immutable copy of this set.
|
default ImmutableIntSet |
ImmutableIntSet.union(IntSet set) |
Copyright © 2004–2022. All rights reserved.