| 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 TFloatList |
TCollections.synchronizedList(TFloatList
Returns a synchronized (thread-safe) Trove list backed by the specified list.
|
static TFloatList |
TCollections.unmodifiableList(TFloatList
Returns an unmodifiable view of the specified Trove primitive list.
|
| Modifier and Type | Method and Description |
|---|---|
static TFloatList |
TCollections.synchronizedList(TFloatList
Returns a synchronized (thread-safe) Trove list backed by the specified list.
|
static TFloatList |
TCollections.unmodifiableList(TFloatList
Returns an unmodifiable view of the specified Trove primitive list.
|
static List |
TDecorators.wrap(TFloatList
Wrap the given list in a decorator that uses the standard
List interface.
|
| Modifier and Type | Field and Description |
|---|---|
protected TFloatList |
TFloatListDecorator.list
the wrapped primitive list
|
| Modifier and Type | Method and Description |
|---|---|
TFloatList |
TFloatListDecorator.getList()
Returns a reference to the list wrapped by this decorator.
|
| Constructor and Description | |
|---|---|
TFloatListDecorator(TFloatList
Creates a wrapper that decorates the specified primitive map.
|
| Modifier and Type | Class and Description |
|---|---|
class |
TSynchronizedFloatList
|
class |
TSynchronizedRandomAccessFloatList
|
| Modifier and Type | Method and Description |
|---|---|
TFloatList |
TSynchronizedFloatList.grep(TFloatProcedure
|
TFloatList |
TSynchronizedFloatList.inverseGrep(TFloatProcedure
|
TFloatList |
TSynchronizedFloatList.subList(int fromIndex, int toIndex)
|
TFloatList |
TSynchronizedRandomAccessFloatList.subList(int fromIndex, int toIndex)
|
| Constructor and Description | |
|---|---|
TSynchronizedFloatList(TFloatList
|
|
TSynchronizedFloatList(TFloatList
|
|
TSynchronizedRandomAccessFloatList(TFloatList
|
|
TSynchronizedRandomAccessFloatList(TFloatList
|
| Modifier and Type | Class and Description |
|---|---|
class |
TUnmodifiableFloatList
|
class |
TUnmodifiableRandomAccessFloatList
|
| Modifier and Type | Method and Description |
|---|---|
TFloatList |
TUnmodifiableFloatList.grep(TFloatProcedure
|
TFloatList |
TUnmodifiableFloatList.inverseGrep(TFloatProcedure
|
TFloatList |
TUnmodifiableFloatList.subList(int fromIndex, int toIndex)
|
TFloatList |
TUnmodifiableRandomAccessFloatList.subList(int fromIndex, int toIndex)
|
| Constructor and Description | |
|---|---|
TUnmodifiableFloatList(TFloatList
|
|
TUnmodifiableRandomAccessFloatList(TFloatList
|
| Modifier and Type | Method and Description |
|---|---|
TFloatList |
TFloatList.grep(TFloatProcedure
Searches the list for values satisfying
condition in the manner of the *nix
grep utility.
|
TFloatList |
TFloatList.inverseGrep(TFloatProcedure
Searches the list for values which do
not satisfy
condition.
|
TFloatList |
TFloatList.subList(int begin, int end)
Returns a sublist of this list.
|
| Modifier and Type | Class and Description |
|---|---|
class |
TFloatArrayList
A resizable, array-backed list of float primitives.
|
| Modifier and Type | Method and Description |
|---|---|
TFloatList |
TFloatArrayList.grep(TFloatProcedure
Searches the list for values satisfying
condition in the manner of the *nix
grep utility.
|
TFloatList |
TFloatArrayList.inverseGrep(TFloatProcedure
Searches the list for values which do
not satisfy
condition.
|
TFloatList |
TFloatArrayList.subList(int begin, int end)
Returns a sublist of this list.
|
| Modifier and Type | Class and Description |
|---|---|
class |
TFloatLinkedList
A resizable, double linked list of float primitives.
|
| Modifier and Type | Method and Description |
|---|---|
TFloatList |
TFloatLinkedList.grep(TFloatProcedure
Searches the list for values satisfying
condition in the manner of the *nix
grep utility.
|
TFloatList |
TFloatLinkedList.inverseGrep(TFloatProcedure
Searches the list for values which do
not satisfy
condition.
|
TFloatList |
TFloatLinkedList.subList(int begin, int end)
Returns a sublist of this list.
|
| Constructor and Description | |
|---|---|
TFloatLinkedList(TFloatList
|