| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
| org.eclipse.collections.api.factory.set.primitive | |
| 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 of
Set. |
| org.eclipse.collections.api.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
| Modifier and Type | Method and Description |
|---|---|
MutableIntSet |
IntIterable.toSet()
Converts the IntIterable to a new MutableIntSet.
|
| Modifier and Type | Method and Description |
|---|---|
MutableIntSet |
MutableIntSetFactory.empty() |
MutableIntSet |
MutableIntSetFactory.of()
Same as
MutableIntSetFactory.empty(). |
MutableIntSet |
MutableIntSetFactory.of(int... items)
Same as
MutableIntSetFactory.with(int[]). |
MutableIntSet |
MutableIntSetFactory.ofAll(IntIterable items)
|
MutableIntSet |
MutableIntSetFactory.ofAll(IntStream items) |
MutableIntSet |
MutableIntSetFactory.with()
Same as
MutableIntSetFactory.empty(). |
MutableIntSet |
MutableIntSetFactory.with(int... items) |
MutableIntSet |
MutableIntSetFactory.withAll(IntIterable items) |
MutableIntSet |
MutableIntSetFactory.withAll(IntStream items) |
| Modifier and Type | Method and Description |
|---|---|
MutableIntSet |
IntBooleanMap.keySet() |
MutableIntSet |
IntCharMap.keySet() |
MutableIntSet |
IntByteMap.keySet() |
MutableIntSet |
IntShortMap.keySet() |
MutableIntSet |
IntLongMap.keySet() |
MutableIntSet |
IntDoubleMap.keySet() |
MutableIntSet |
IntFloatMap.keySet() |
MutableIntSet |
IntIntMap.keySet() |
MutableIntSet |
IntObjectMap.keySet() |
| Modifier and Type | Method and Description |
|---|---|
MutableIntSet |
MutableSet.collectInt(IntFunction<? super T> intFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableIntSet |
MutableIntSet.asSynchronized() |
MutableIntSet |
MutableIntSet.asUnmodifiable() |
MutableIntSet |
MutableIntSet.reject(IntPredicate predicate) |
MutableIntSet |
MutableIntSet.select(IntPredicate predicate) |
default MutableIntSet |
MutableIntSet.tap(IntProcedure procedure) |
MutableIntSet |
MutableIntSet.with(int element) |
MutableIntSet |
MutableIntSet.withAll(IntIterable elements) |
MutableIntSet |
MutableIntSet.without(int element) |
MutableIntSet |
MutableIntSet.withoutAll(IntIterable elements) |
Copyright © 2004–2017. All rights reserved.