| 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 |
|---|---|
MutableLongSet |
LongIterable.toSet()
Converts the LongIterable to a new MutableLongSet.
|
| 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(LongIterable items)
|
MutableLongSet |
MutableLongSetFactory.ofAll(LongStream items) |
MutableLongSet |
MutableLongSetFactory.with()
Same as
MutableLongSetFactory.empty(). |
MutableLongSet |
MutableLongSetFactory.with(long... items) |
MutableLongSet |
MutableLongSetFactory.withAll(LongIterable items) |
MutableLongSet |
MutableLongSetFactory.withAll(LongStream items) |
| Modifier and Type | Method and Description |
|---|---|
MutableLongSet |
LongBooleanMap.keySet() |
MutableLongSet |
LongCharMap.keySet() |
MutableLongSet |
LongByteMap.keySet() |
MutableLongSet |
LongShortMap.keySet() |
MutableLongSet |
LongLongMap.keySet() |
MutableLongSet |
LongDoubleMap.keySet() |
MutableLongSet |
LongFloatMap.keySet() |
MutableLongSet |
LongIntMap.keySet() |
MutableLongSet |
LongObjectMap.keySet() |
| 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() |
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–2017. All rights reserved.