| 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 |
|---|---|
ImmutableLongSet |
ImmutableLongSetFactory.empty() |
ImmutableLongSet |
ImmutableLongSetFactory.of()
Same as
ImmutableLongSetFactory.empty(). |
ImmutableLongSet |
ImmutableLongSetFactory.of(long... items)
Same as
ImmutableLongSetFactory.with(long[]). |
ImmutableLongSet |
ImmutableLongSetFactory.of(long one)
Same as
ImmutableLongSetFactory.with(long). |
ImmutableLongSet |
ImmutableLongSetFactory.ofAll(LongIterable items)
|
ImmutableLongSet |
ImmutableLongSetFactory.ofAll(LongStream items) |
ImmutableLongSet |
ImmutableLongSetFactory.with()
Same as
ImmutableLongSetFactory.empty(). |
ImmutableLongSet |
ImmutableLongSetFactory.with(long... items) |
ImmutableLongSet |
ImmutableLongSetFactory.with(long one) |
ImmutableLongSet |
ImmutableLongSetFactory.withAll(LongIterable items) |
ImmutableLongSet |
ImmutableLongSetFactory.withAll(LongStream items) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableLongSet |
ImmutableSet.collectLong(LongFunction<? super T> longFunction) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableLongSet |
ImmutableLongSet.newWith(long element) |
ImmutableLongSet |
ImmutableLongSet.newWithAll(LongIterable elements) |
ImmutableLongSet |
ImmutableLongSet.newWithout(long element) |
ImmutableLongSet |
ImmutableLongSet.newWithoutAll(LongIterable elements) |
ImmutableLongSet |
ImmutableLongSet.reject(LongPredicate predicate) |
ImmutableLongSet |
ImmutableLongSet.select(LongPredicate predicate) |
default ImmutableLongSet |
ImmutableLongSet.tap(LongProcedure procedure) |
ImmutableLongSet |
LongSet.toImmutable()
Returns an immutable copy of this set.
|
ImmutableLongSet |
MutableLongSet.toImmutable()
Returns an immutable copy of this set.
|
Copyright © 2004–2017. All rights reserved.