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<? super V,? extends java.lang.Iterable<? extends T>> function,
java.lang.Iterable<? extends V> delegate) |
iterator