| Class | Description |
|---|---|
| ArrayIterable<T> |
Iterable adapter for arrays. |
| CachingIterable<T> | Deprecated
in favor of
Repeatable, 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. |
| Repeatable<T> |
An
Iterable which iterates the elements of the given Iterator. |
| 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. |