| Package | Description |
|---|---|
| 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 |
This package contains factory API for creating primitive set instances.
|
| 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 |
ImmutableLongBag.selectUnique()
Returns all elements of the bag that have exactly one occurrence.
|
| 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(Iterable<Long> iterable)
|
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(Iterable<Long> iterable) |
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 |
|---|---|
default ImmutableLongSet |
ImmutableLongSet.difference(LongSet set)
Returns the set of all members of
this that are not members of set. |
default ImmutableLongSet |
ImmutableLongSet.intersect(LongSet set)
Returns the set of all objects that are members of both
this and set. |
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.symmetricDifference(LongSet set)
Returns the set of all objects that are a member of exactly one of
this and set (elements which
are in one of the sets, but not in both). |
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.
|
default ImmutableLongSet |
ImmutableLongSet.union(LongSet set) |
Copyright © 2004–2023. All rights reserved.