| 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 |
|---|---|
MutableDoubleList |
DoubleIterable.toList()
Converts the DoubleIterable to a new MutableDoubleList.
|
MutableDoubleList |
DoubleIterable.toSortedList() |
default MutableDoubleList |
DoubleIterable.toSortedList(DoubleComparator comparator)
Converts the collection to a MutableDoubleList implementation sorted using the provided comparator.
|
default <T> MutableDoubleList |
DoubleIterable.toSortedListBy(DoubleToObjectFunction<T> function)
Converts the collection to a MutableDoubleListImplementation sorted based on the natural order of the key returned
by
function. |
default <T> MutableDoubleList |
DoubleIterable.toSortedListBy(DoubleToObjectFunction<T> function,
Comparator<? super T> comparator)
Converts the collection to a MutableDoubleList implementation, which is sorted based on the key returned by
function using the provided comparator. |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleList |
MutableSortedBag.collectDouble(DoubleFunction<? super T> doubleFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleList |
MutableDoubleListFactory.empty() |
MutableDoubleList |
MutableDoubleListFactory.of()
Same as
MutableDoubleListFactory.empty(). |
MutableDoubleList |
MutableDoubleListFactory.of(double... items)
|
MutableDoubleList |
MutableDoubleListFactory.ofAll(DoubleIterable items)
|
MutableDoubleList |
MutableDoubleListFactory.ofAll(DoubleStream items) |
MutableDoubleList |
MutableDoubleListFactory.ofAll(Iterable<Double> iterable)
|
MutableDoubleList |
MutableDoubleListFactory.with()
Same as
MutableDoubleListFactory.empty(). |
MutableDoubleList |
MutableDoubleListFactory.with(double... items)
Creates a new list using the passed
items argument as the backing store. |
MutableDoubleList |
MutableDoubleListFactory.withAll(DoubleIterable items) |
MutableDoubleList |
MutableDoubleListFactory.withAll(DoubleStream items) |
MutableDoubleList |
MutableDoubleListFactory.withAll(Iterable<Double> iterable) |
default MutableDoubleList |
MutableDoubleListFactory.withInitialCapacity(int capacity)
Same as
MutableDoubleListFactory.empty(). |
default MutableDoubleList |
MutableDoubleListFactory.wrapCopy(double... array)
Creates a new list by first copying the array passed in.
|
| Modifier and Type | Method and Description |
|---|---|
default MutableDoubleList |
MutableList.collectDouble(DoubleFunction<? super T> doubleFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleList |
MutableDoubleList.asSynchronized() |
MutableDoubleList |
MutableDoubleList.asUnmodifiable() |
MutableDoubleList |
MutableDoubleList.distinct() |
default MutableDoubleList |
MutableDoubleList.newEmpty()
Creates a new empty mutable version of the same List type.
|
MutableDoubleList |
MutableDoubleList.reject(DoublePredicate predicate) |
default MutableDoubleList |
MutableDoubleList.rejectWithIndex(DoubleIntPredicate predicate)
Returns a new MutableDoubleList excluding all elements with corresponding indexes matching the specified predicate.
|
MutableDoubleList |
MutableDoubleList.reverseThis() |
MutableDoubleList |
MutableDoubleList.select(DoublePredicate predicate) |
default MutableDoubleList |
MutableDoubleList.selectWithIndex(DoubleIntPredicate predicate)
Returns a new MutableDoubleList including all elements with corresponding indexes matching the specified predicate.
|
default MutableDoubleList |
MutableDoubleList.shuffleThis()
Randomly permutes this list mutating its contents and returns the same list (this).
|
default MutableDoubleList |
MutableDoubleList.shuffleThis(Random rnd)
Randomly permutes this list mutating its contents and returns the same list (this).
|
MutableDoubleList |
MutableDoubleList.sortThis()
Sorts this list mutating its contents and returns the same mutable list (this).
|
default MutableDoubleList |
MutableDoubleList.sortThis(DoubleComparator comparator)
Sorts the internal data structure of this list and returns the list itself as a convenience.
|
default <T> MutableDoubleList |
MutableDoubleList.sortThisBy(DoubleToObjectFunction<T> function)
Sorts the internal data structure of this list based on the natural order of the key returned by
function. |
default <T> MutableDoubleList |
MutableDoubleList.sortThisBy(DoubleToObjectFunction<T> function,
Comparator<? super T> comparator)
Sorts the internal data structure of this list based on the key returned by
function using the provided comparator. |
MutableDoubleList |
MutableDoubleList.subList(int fromIndex,
int toIndex) |
default MutableDoubleList |
MutableDoubleList.tap(DoubleProcedure procedure) |
MutableDoubleList |
MutableDoubleList.toReversed() |
MutableDoubleList |
MutableDoubleList.with(double element) |
MutableDoubleList |
MutableDoubleList.withAll(DoubleIterable elements) |
MutableDoubleList |
MutableDoubleList.without(double element) |
MutableDoubleList |
MutableDoubleList.withoutAll(DoubleIterable elements) |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleList |
MutableOrderedMap.collectDouble(DoubleFunction<? super V> doubleFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleList |
MutableSortedMap.collectDouble(DoubleFunction<? super V> doubleFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleList |
MutableSortedSet.collectDouble(DoubleFunction<? super T> doubleFunction) |
Copyright © 2004–2023. All rights reserved.