public abstract class AbstractIterable<E> extends AbstractTraversable<E> implements Iterable<E>
| Constructor and Description |
|---|
AbstractIterable() |
| Modifier and Type | Method and Description |
|---|---|
<U> void |
forEach(Function<E,U> f)
All collection methods can be built upon this
forEach definition. |
isEmpty, makeString, makeString, size, to, toArray, toArray, toIndexedList, toSet, toSortedSet, toStringclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitisEmpty, makeString, makeString, size, to, toArray, toArray, toIndexedList, toSet, toSortedSetpublic <U> void forEach(@NotNull
Function<E,U> f)
TraversableforEach definition.forEach in interface Traversable<E>