| 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 |
|---|---|
MutableLongSet |
LongIterable.toSet()
Converts the LongIterable to a new MutableLongSet.
|
| Modifier and Type | Method and Description |
|---|---|
MutableLongSet |
MutableLongBag.selectUnique()
Returns all elements of the bag that have exactly one occurrence.
|
| Modifier and Type | Method and Description |
|---|---|
MutableLongSet |
MutableLongSetFactory.empty() |
MutableLongSet |
MutableLongSetFactory.of()
Same as
MutableLongSetFactory.empty(). |
MutableLongSet |
MutableLongSetFactory.of(long... items)
Same as
MutableLongSetFactory.with(long[]). |
MutableLongSet |
MutableLongSetFactory.ofAll(Iterable<Long> iterable)
|
MutableLongSet |
MutableLongSetFactory.ofAll(LongIterable items)
|
MutableLongSet |
MutableLongSetFactory.ofAll(LongStream items) |
MutableLongSet |
MutableLongSetFactory.with()
Same as
MutableLongSetFactory.empty(). |
MutableLongSet |
MutableLongSetFactory.with(long... items) |
MutableLongSet |
MutableLongSetFactory.withAll(Iterable<Long> iterable) |
MutableLongSet |
MutableLongSetFactory.withAll(LongIterable items) |
MutableLongSet |
MutableLongSetFactory.withAll(LongStream items) |
default MutableLongSet |
MutableLongSetFactory.withInitialCapacity(int capacity)
Same as
MutableLongSetFactory.empty(). |
| Modifier and Type | Method and Description |
|---|---|
MutableLongSet |
LongBooleanMap.keySet()
Returns a set containing all the keys in this map.
|
MutableLongSet |
LongCharMap.keySet()
Returns a set containing all the keys in this map.
|
MutableLongSet |
LongByteMap.keySet()
Returns a set containing all the keys in this map.
|
MutableLongSet |
LongShortMap.keySet()
Returns a set containing all the keys in this map.
|
MutableLongSet |
LongLongMap.keySet()
Returns a set containing all the keys in this map.
|
MutableLongSet |
LongDoubleMap.keySet()
Returns a set containing all the keys in this map.
|
MutableLongSet |
LongFloatMap.keySet()
Returns a set containing all the keys in this map.
|
MutableLongSet |
LongIntMap.keySet()
Returns a set containing all the keys in this map.
|
MutableLongSet |
LongObjectMap.keySet()
Returns a set containing all the keys in this map.
|
| Modifier and Type | Method and Description |
|---|---|
MutableLongSet |
MutableSet.collectLong(LongFunction<? super T> longFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableLongSet |
MutableLongSet.asSynchronized() |
MutableLongSet |
MutableLongSet.asUnmodifiable() |
default MutableLongSet |
MutableLongSet.newEmpty()
Creates a new empty mutable version of the same Set type.
|
MutableLongSet |
MutableLongSet.reject(LongPredicate predicate) |
MutableLongSet |
MutableLongSet.select(LongPredicate predicate) |
default MutableLongSet |
MutableLongSet.tap(LongProcedure procedure) |
MutableLongSet |
MutableLongSet.with(long element) |
MutableLongSet |
MutableLongSet.withAll(LongIterable elements) |
MutableLongSet |
MutableLongSet.without(long element) |
MutableLongSet |
MutableLongSet.withoutAll(LongIterable elements) |
Copyright © 2004–2020. All rights reserved.