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.
|
MutableList<T> |
A MutableList is an implementation of a JCF 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 4 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.
Copyright © 2004–2016. All rights reserved.