List.See: Description
| Interface | Description |
|---|---|
| FixedSizeList<T> |
A FixedSizeList is a list that may be mutated, but cannot grow or shrink in size.
|
| ImmutableList<T> |
ImmutableList is the non-modifiable equivalent interface to
MutableList. |
| ListIterable<T> |
An iterable whose items are ordered and may be accessed directly by index.
|
| MultiReaderList<T> |
A MultiReaderList provides thread-safe iteration for a list through methods
withReadLockAndDelegate() and withWriteLockAndDelegate(). |
| MutableList<T> |
A MutableList is an extension of java.util.List which provides methods matching the Smalltalk Collection protocol.
|
| ParallelListIterable<T> |
A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc.
|
List.
This package contains 5 interfaces:
ListIterable - an Iterable which contains items that are ordered and may be accessed directly by index.
MutableList - an implementation of a JCF List which provides internal iterator methods matching the Smalltalk Collection protocol.
ImmutableList - the non-modifiable equivalent interface to MutableList.
FixedSizeList - a list that may be mutated, but cannot grow or shrink in size.
ParallelListIterable - a RichIterable which will defer evaluation for certain methods like select, reject, collect, etc. When evaluation occurs it is in parallel.
Copyright © 2004–2023. All rights reserved.