| Package | Description |
|---|---|
| org.eclipse.collections.api.factory.set.primitive | |
| 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 |
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.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) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableIntSet |
ImmutableSet.collectInt(IntFunction<? super T> intFunction) |
| Modifier and Type | Method and Description |
|---|---|
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.tap(IntProcedure procedure) |
ImmutableIntSet |
IntSet.toImmutable()
Returns an immutable copy of this set.
|
ImmutableIntSet |
MutableIntSet.toImmutable()
Returns an immutable copy of this set.
|
Copyright © 2004–2017. All rights reserved.