| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
| 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 | |
| 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 |
MutableIntBag.selectUnique()
Returns all elements of the bag that have exactly one occurrence.
|
| 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.ofAll(Iterable<Integer> iterable)
|
MutableIntSet |
MutableIntSetFactory.with()
Same as
MutableIntSetFactory.empty(). |
MutableIntSet |
MutableIntSetFactory.with(int... items) |
MutableIntSet |
MutableIntSetFactory.withAll(IntIterable items) |
MutableIntSet |
MutableIntSetFactory.withAll(IntStream items) |
MutableIntSet |
MutableIntSetFactory.withAll(Iterable<Integer> iterable) |
default MutableIntSet |
MutableIntSetFactory.withInitialCapacity(int capacity)
Same as
MutableIntSetFactory.empty(). |
| Modifier and Type | Method and Description |
|---|---|
MutableIntSet |
IntBooleanMap.keySet()
Returns a set containing all the keys in this map.
|
MutableIntSet |
IntCharMap.keySet()
Returns a set containing all the keys in this map.
|
MutableIntSet |
IntByteMap.keySet()
Returns a set containing all the keys in this map.
|
MutableIntSet |
IntShortMap.keySet()
Returns a set containing all the keys in this map.
|
MutableIntSet |
IntLongMap.keySet()
Returns a set containing all the keys in this map.
|
MutableIntSet |
IntDoubleMap.keySet()
Returns a set containing all the keys in this map.
|
MutableIntSet |
IntFloatMap.keySet()
Returns a set containing all the keys in this map.
|
MutableIntSet |
IntIntMap.keySet()
Returns a set containing all the keys in this map.
|
MutableIntSet |
IntObjectMap.keySet()
Returns a set containing all the keys in this map.
|
| 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() |
default MutableIntSet |
MutableIntSet.intersect(IntSet set)
Returns the set of all objects that are members of both
this and set. |
default MutableIntSet |
MutableIntSet.newEmpty()
Creates a new empty mutable version of the same Set type.
|
MutableIntSet |
MutableIntSet.reject(IntPredicate predicate) |
MutableIntSet |
MutableIntSet.select(IntPredicate predicate) |
default MutableIntSet |
MutableIntSet.tap(IntProcedure procedure) |
default MutableIntSet |
MutableIntSet.union(IntSet set) |
MutableIntSet |
MutableIntSet.with(int element) |
MutableIntSet |
MutableIntSet.withAll(IntIterable elements) |
MutableIntSet |
MutableIntSet.without(int element) |
MutableIntSet |
MutableIntSet.withoutAll(IntIterable elements) |
Copyright © 2004–2020. All rights reserved.