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