| Package | Description |
|---|---|
| gnu.trove | |
| gnu.trove.decorator | |
| gnu.trove.impl.sync | |
| gnu.trove.impl.unmodifiable | |
| gnu.trove.list | |
| gnu.trove.list.array | |
| gnu.trove.list.linked |
| Modifier and Type | Method and Description |
|---|---|
static TDoubleList |
TCollections.synchronizedList(TDoubleList
Returns a synchronized (thread-safe) Trove list backed by the specified list.
|
static TDoubleList |
TCollections.unmodifiableList(TDoubleList
Returns an unmodifiable view of the specified Trove primitive list.
|
| Modifier and Type | Method and Description |
|---|---|
static TDoubleList |
TCollections.synchronizedList(TDoubleList
Returns a synchronized (thread-safe) Trove list backed by the specified list.
|
static TDoubleList |
TCollections.unmodifiableList(TDoubleList
Returns an unmodifiable view of the specified Trove primitive list.
|
static List |
TDecorators.wrap(TDoubleList
Wrap the given list in a decorator that uses the standard
List interface.
|
| Modifier and Type | Field and Description |
|---|---|
protected TDoubleList |
TDoubleListDecorator.list
the wrapped primitive list
|
| Modifier and Type | Method and Description |
|---|---|
TDoubleList |
TDoubleListDecorator.getList()
Returns a reference to the list wrapped by this decorator.
|
| Constructor and Description | |
|---|---|
TDoubleListDecorator(TDoubleList
Creates a wrapper that decorates the specified primitive map.
|
| Modifier and Type | Class and Description |
|---|---|
class |
TSynchronizedDoubleList
|
class |
TSynchronizedRandomAccessDoubleList
|
| Modifier and Type | Method and Description |
|---|---|
TDoubleList |
TSynchronizedDoubleList.grep(TDoubleProcedure
|
TDoubleList |
TSynchronizedDoubleList.inverseGrep(TDoubleProcedure
|
TDoubleList |
TSynchronizedRandomAccessDoubleList.subList(int fromIndex, int toIndex)
|
TDoubleList |
TSynchronizedDoubleList.subList(int fromIndex, int toIndex)
|
| Constructor and Description | |
|---|---|
TSynchronizedDoubleList(TDoubleList
|
|
TSynchronizedDoubleList(TDoubleList
|
|
TSynchronizedRandomAccessDoubleList(TDoubleList
|
|
TSynchronizedRandomAccessDoubleList(TDoubleList
|
| Modifier and Type | Class and Description |
|---|---|
class |
TUnmodifiableDoubleList
|
class |
TUnmodifiableRandomAccessDoubleList
|
| Modifier and Type | Method and Description |
|---|---|
TDoubleList |
TUnmodifiableDoubleList.grep(TDoubleProcedure
|
TDoubleList |
TUnmodifiableDoubleList.inverseGrep(TDoubleProcedure
|
TDoubleList |
TUnmodifiableRandomAccessDoubleList.subList(int fromIndex, int toIndex)
|
TDoubleList |
TUnmodifiableDoubleList.subList(int fromIndex, int toIndex)
|
| Constructor and Description | |
|---|---|
TUnmodifiableDoubleList(TDoubleList
|
|
TUnmodifiableRandomAccessDoubleList(TDoubleList
|
| Modifier and Type | Method and Description |
|---|---|
TDoubleList |
TDoubleList.grep(TDoubleProcedure
Searches the list for values satisfying
condition in the manner of the *nix
grep utility.
|
TDoubleList |
TDoubleList.inverseGrep(TDoubleProcedure
Searches the list for values which do
not satisfy
condition.
|
TDoubleList |
TDoubleList.subList(int begin, int end)
Returns a sublist of this list.
|
| Modifier and Type | Class and Description |
|---|---|
class |
TDoubleArrayList
A resizable, array-backed list of double primitives.
|
| Modifier and Type | Method and Description |
|---|---|
TDoubleList |
TDoubleArrayList.grep(TDoubleProcedure
Searches the list for values satisfying
condition in the manner of the *nix
grep utility.
|
TDoubleList |
TDoubleArrayList.inverseGrep(TDoubleProcedure
Searches the list for values which do
not satisfy
condition.
|
TDoubleList |
TDoubleArrayList.subList(int begin, int end)
Returns a sublist of this list.
|
| Modifier and Type | Class and Description |
|---|---|
class |
TDoubleLinkedList
A resizable, double linked list of double primitives.
|
| Modifier and Type | Method and Description |
|---|---|
TDoubleList |
TDoubleLinkedList.grep(TDoubleProcedure
Searches the list for values satisfying
condition in the manner of the *nix
grep utility.
|
TDoubleList |
TDoubleLinkedList.inverseGrep(TDoubleProcedure
Searches the list for values which do
not satisfy
condition.
|
TDoubleList |
TDoubleLinkedList.subList(int begin, int end)
Returns a sublist of this list.
|
| Constructor and Description | |
|---|---|
TDoubleLinkedList(TDoubleList
|