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