public final class Expanded<T> extends DelegatingIterable<T>
Iterable which expands each element into an Iterable (using the given function) and joins the results.
This resembles what other frameworks call "flatmap".
| Constructor and Description |
|---|
Expanded(Function<V,java.lang.Iterable<T>> function,
java.lang.Iterable<V> delegate) |
iterator