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