| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
| org.eclipse.collections.api.bag.sorted |
This package contains interfaces for SortedBag API.
|
| org.eclipse.collections.api.factory.list.primitive |
This package contains factory API for creating immutable primitive list instances.
|
| org.eclipse.collections.api.list |
This package contains interfaces for list API which enhance the performance and functionality of
List. |
| org.eclipse.collections.api.list.primitive |
This package contains mutable and immutable primitive list API.
|
| org.eclipse.collections.api.map |
This package contains interfaces for map API which enhance the performance and functionality of
Map |
| org.eclipse.collections.api.map.sorted |
This package contains mutable and immutable sorted map interfaces.
|
| org.eclipse.collections.api.set.sorted |
This package contains interfaces for sorted set API.
|
| Modifier and Type | Method and Description |
|---|---|
MutableLongList |
LongIterable.toList()
Converts the LongIterable to a new MutableLongList.
|
MutableLongList |
LongIterable.toSortedList() |
| Modifier and Type | Method and Description |
|---|---|
MutableLongList |
MutableSortedBag.collectLong(LongFunction<? super T> longFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableLongList |
MutableLongListFactory.empty() |
MutableLongList |
MutableLongListFactory.of()
Same as
MutableLongListFactory.empty(). |
MutableLongList |
MutableLongListFactory.of(long... items)
Same as
MutableLongListFactory.with(long[]). |
MutableLongList |
MutableLongListFactory.ofAll(LongIterable items)
|
MutableLongList |
MutableLongListFactory.ofAll(LongStream items) |
MutableLongList |
MutableLongListFactory.with()
Same as
MutableLongListFactory.empty(). |
MutableLongList |
MutableLongListFactory.with(long... items) |
MutableLongList |
MutableLongListFactory.withAll(LongIterable items) |
MutableLongList |
MutableLongListFactory.withAll(LongStream items) |
| Modifier and Type | Method and Description |
|---|---|
MutableLongList |
MutableList.collectLong(LongFunction<? super T> longFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableLongList |
MutableLongList.asSynchronized() |
MutableLongList |
MutableLongList.asUnmodifiable() |
MutableLongList |
MutableLongList.distinct() |
MutableLongList |
MutableLongList.reject(LongPredicate predicate) |
MutableLongList |
MutableLongList.reverseThis() |
MutableLongList |
MutableLongList.select(LongPredicate predicate) |
MutableLongList |
MutableLongList.sortThis()
Sorts this list mutating its contents and returns the same mutable list (this).
|
MutableLongList |
MutableLongList.subList(int fromIndex,
int toIndex) |
default MutableLongList |
MutableLongList.tap(LongProcedure procedure) |
MutableLongList |
MutableLongList.toReversed() |
MutableLongList |
MutableLongList.with(long element) |
MutableLongList |
MutableLongList.withAll(LongIterable elements) |
MutableLongList |
MutableLongList.without(long element) |
MutableLongList |
MutableLongList.withoutAll(LongIterable elements) |
| Modifier and Type | Method and Description |
|---|---|
MutableLongList |
MutableOrderedMap.collectLong(LongFunction<? super V> longFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableLongList |
MutableSortedMap.collectLong(LongFunction<? super V> longFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableLongList |
MutableSortedSet.collectLong(LongFunction<? super T> longFunction) |
Copyright © 2004–2017. All rights reserved.