See: Description
| Interface | Description |
|---|---|
| CollectionByte |
A collection of
bytes. |
| CollectionDouble |
A collection of
doubles. |
| CollectionFloat |
A collection of
floats. |
| CollectionInt |
A collection of
ints. |
| CollectionLong |
A collection of
longs. |
| CollectionNumber |
A collection of numeric (primitive) elements.
|
| CollectionShort |
A collection of
shorts. |
| IteratorNumber |
An iterator for a stream of primitive numbers, which allows to retrieve
the value casted in the type you prefer.
|
| ListNumber |
An ordered collection of numeric (primitive) elements.
|
| Class | Description |
|---|---|
| ArrayBoolean |
Wraps a
boolean[] into a ListBoolean. |
| ArrayByte |
Wraps a
byte[] into a ListByte. |
| ArrayDouble |
Wraps a
double[] into a ListDouble. |
| ArrayFloat |
Wraps a
float[] into a ListFloat. |
| ArrayInt |
Wraps a
int[] into a ListInt. |
| ArrayLong |
Wraps a
long[] into a ListLong. |
| ArrayShort |
Wraps a
short[] into a ListShort. |
| BufferInt |
An implementation of a list on top of buffer.
|
| CircularBufferDouble |
An implementation of a list on top of a circular buffer.
|
| CollectionNumbers |
Utilities to work with number collections.
|
| IteratorByte |
An iterator of
bytes. |
| IteratorDouble |
An iterator of
doubles. |
| IteratorFloat |
An iterator of
floats. |
| IteratorInt |
An iterator of
ints. |
| IteratorLong |
An iterator of
longs. |
| IteratorShort |
An iterator of
shorts. |
| ListBoolean |
An ordered collection of
booleans. |
| ListByte |
An ordered collection of
bytes. |
| ListDouble |
An ordered collection of
doubles. |
| ListFloat |
An ordered collection of
floats. |
| ListInt |
An ordered collection of
ints. |
| ListLong |
An ordered collection of
longs. |
| ListMath |
Math operations defined on lists of numbers.
|
| ListNumbers |
Utilities for manipulating ListNumbers.
|
| ListShort |
An ordered collection of
shorts. |
| SortedListView |
A sorted view of a list.
|
The design is loosely inspired by the Collection framework, but does not
directly implement it. Due to the invariant nature of Java generics,
it would make the usage of inheritance awkward. See IteratorNumber
for more details.
Copyright © 2015. All rights reserved.