| Ascending<T extends java.lang.Comparable<? super T>> |
An Iterable decorator which returns the elements of the delegate in their natural ascending order.
|
| Chunked<T> |
An Iterable decorator which returns the elements of the decorated Iterable in chunks of a specific size.
|
| Clustered<T> |
An Iterable decorator which clusters consecutive elements of another Iterable by the result of a Comparator.
|
| DelegatingIterable<E> |
An abstract Iterable which delegates all method calls to another given Iterable.
|
| Descending<T extends java.lang.Comparable<? super T>> |
An Iterable decorator which returns the elements of the delegate in their natural descending order.
|
| Diff<Left,Right> |
An Iterable of the differences of two given Iterables.
|
| Distinct<T> |
An Iterator which drops duplicates of already iterated elements.
|
| EmptyIterable<E> |
An Iterable that is always empty.
|
| Expanded<T> |
A decorator for Iterable which expands each element into an Iterable (using the given function) and joins the results.
|
| First<T> |
An Iterable decorator which returns only the first few elements of the delegate.
|
| Frozen<T> |
An Iterable stores the elements of the given Iterator or Iterable in order to allow re-iterating them.
|
| Infinite<T> |
A Generatable to Iterable adapter which continues iterating forever.
|
| Joined<T> |
An Iterable which joins other Iterables by iterating the values of them one after another.
|
| Just<T> |
An Iterable which iterates a single value.
|
| LeftZipped<Left,Right,Result> |
/**
An Iterable combining the elements of two given Iterables using a BiFunction.
|
| Mapped<OriginalType,ResultType> |
Iterable decorator maps the results of the delegate Iterable using a given Function.
|
| Numbered<T> |
An Iterable decorator which pairs every value of another iterator with it's sequential ordinal number.
|
| OuterZipped<Left,Right,Result> |
/**
An Iterable combining the elements of two given Iterables using a BiFunction.
|
| Paired<Left,Right> |
An Iterable combining the elements of two given Iterables into an Iterable of Pairs.
|
| PresentValues<T> |
Iterable which iterates over the present values in the input Iterable of Optionals.
|
| Reverse<T> |
Iterable decorator that iterates the values of another Iterable in reverse order.
|
| RightZipped<Left,Right,Result> |
/**
An Iterable combining the elements of two given Iterables using a BiFunction.
|
| Seq<T> |
Iterable sequence of values.
|
| Sieved<E> |
Iterable decorator which iterates all elements of the delegate which satisfy a given Predicate.
|
| SingletonIterable<E> |
Iterable with a single element.
|
| Sorted<T> |
An Iterable decorator which returns the elements of the delegate in a sorted order, determined by a given Comparator.
|
| StackIterable<Element> |
An Iterable which iterates the elements of a Stack.
|
| Zipped<Result> |
An Iterable combining the elements of two given Iterables using a BiFunction.
|