| Interface | Description |
|---|---|
| FluentIterable<E> |
Interface of an
Iterable that can be decorated with a fluent interface. |
| Class | Description |
|---|---|
| ArrayIterable<T> | Deprecated
in favour of
Seq |
| CachingIterable<T> | Deprecated
in favor of
Frozen, to be removed in version 2.0. |
| CsvIterable | Deprecated
in favor of
Split, to be removed in version 2.0. |
| Distinct<T> |
Iterable decorator that removes any duplicates from another Iterable, keeping only the first
occurrence of each iterated value. |
| EmptyIterable<E> |
An
Iterable that is always empty. |
| Repeatable<T> | Deprecated
in favour of
Frozen. |
| SingletonIterable<E> |
Iterable with a single element. |
| Split |
An
Iterable which iterates the elements of a CharSequence of a comma (or other character) separated value
list. |
| UnquotedSplit |
An
Iterable that iterates the elements of a CharSequence of a comma (or other character) separated value
list. |