| 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 |
|---|---|
IntArrayList |
IntArrayList.newEmpty()
Creates a new empty IntArrayList.
|
static IntArrayList |
IntArrayList.newList(IntIterable source) |
static IntArrayList |
IntArrayList.newListWith(int... elements)
Creates a new list using the passed
elements argument as the backing store. |
static IntArrayList |
IntArrayList.newWithNValues(int size,
int value) |
IntArrayList |
IntArrayList.reject(IntPredicate predicate) |
IntArrayList |
IntArrayList.reverseThis() |
IntArrayList |
IntArrayList.select(IntPredicate predicate) |
IntArrayList |
IntArrayList.sortThis() |
IntArrayList |
IntArrayList.sortThis(IntComparator comparator) |
IntArrayList |
IntArrayList.toReversed() |
IntArrayList |
IntArrayList.with(int element) |
IntArrayList |
IntArrayList.with(int element1,
int element2) |
IntArrayList |
IntArrayList.with(int element1,
int element2,
int element3) |
IntArrayList |
IntArrayList.with(int element1,
int element2,
int element3,
int... elements) |
IntArrayList |
IntArrayList.withAll(IntIterable elements) |
IntArrayList |
IntArrayList.without(int element) |
IntArrayList |
IntArrayList.withoutAll(IntIterable elements) |
static IntArrayList |
IntArrayList.wrapCopy(int... array)
Creates a new list by first copying the array passed in.
|
Copyright © 2004–2022. All rights reserved.