| Package | Description |
|---|---|
| org.eclipse.collections.impl.list.mutable.primitive |
This package contains implementations of the mutable primitive list interfaces.
|
| Modifier and Type | Method and Description |
|---|---|
DoubleArrayList |
DoubleArrayList.newEmpty()
Creates a new empty DoubleArrayList.
|
static DoubleArrayList |
DoubleArrayList.newList(DoubleIterable source) |
static DoubleArrayList |
DoubleArrayList.newListWith(double... elements)
Creates a new list using the passed
elements argument as the backing store. |
static DoubleArrayList |
DoubleArrayList.newWithNValues(int size,
double value) |
DoubleArrayList |
DoubleArrayList.reject(DoublePredicate predicate) |
DoubleArrayList |
DoubleArrayList.reverseThis() |
DoubleArrayList |
DoubleArrayList.select(DoublePredicate predicate) |
DoubleArrayList |
DoubleArrayList.sortThis() |
DoubleArrayList |
DoubleArrayList.sortThis(DoubleComparator comparator) |
DoubleArrayList |
DoubleArrayList.toReversed() |
DoubleArrayList |
DoubleArrayList.with(double element) |
DoubleArrayList |
DoubleArrayList.with(double element1,
double element2) |
DoubleArrayList |
DoubleArrayList.with(double element1,
double element2,
double element3) |
DoubleArrayList |
DoubleArrayList.with(double element1,
double element2,
double element3,
double... elements) |
DoubleArrayList |
DoubleArrayList.withAll(DoubleIterable elements) |
DoubleArrayList |
DoubleArrayList.without(double element) |
DoubleArrayList |
DoubleArrayList.withoutAll(DoubleIterable elements) |
static DoubleArrayList |
DoubleArrayList.wrapCopy(double... array)
Creates a new list by first copying the array passed in.
|
Copyright © 2004–2022. All rights reserved.