| Interface | Description |
|---|---|
| CloseableIterable<T> |
An iterable type which returns iterators that support a close() method.
|
| CloseableIterator<T> |
An iterator which supports a close() method.
|
| Enumerable<T> |
The base interface for an Enumerable-Enumerator
pair of iteration method where the
enumerator has
next() to
advance the iteration and current()
to return the current element. |
| Enumerator<T> |
The base interface for an Enumerable-Enumerator
pair of iteration method where the
enumerator has
next() to
advance the iteration and current()
to return the current element. |
| Class | Description |
|---|---|
| GroupedIterable<K,V> |
Contains a sequence values with an associated key used by the groupBy operator.
|
| Ix<T> |
An iterable builder which offers methods to chain the
sequence of some Interactive operations.
|
| Pair<T,U> |
A pair of two objects.
|