static <T,E extends Exception> void |
N.forEachIndexed(Collection<? extends T> c,
int fromIndex,
int toIndex,
Throwables.IndexedConsumer<? super T,E> action)
Mostly it's designed for one-step operation to complete the operation in one step.
|
static <T,E extends Exception> void |
N.forEachIndexed(Collection<? extends T> c,
Throwables.IndexedConsumer<? super T,E> action) |
static <T,E extends Exception> void |
N.forEachIndexed(Iterator<? extends T> iter,
Throwables.IndexedConsumer<? super T,E> action) |
static <K,V,E extends Exception> void |
N.forEachIndexed(Map<K,V> map,
Throwables.IndexedConsumer<? super Map.Entry<K,V>,E> action) |
static <T,E extends Exception> void |
N.forEachIndexed(T[] a,
int fromIndex,
int toIndex,
Throwables.IndexedConsumer<? super T,E> action) |
static <T,E extends Exception> void |
N.forEachIndexed(T[] a,
Throwables.IndexedConsumer<? super T,E> action) |
<E extends Exception> void |
LineIterator.foreachIndexed(Throwables.IndexedConsumer<? super String,E> action) |
<E2 extends Exception> void |
ExceptionalStream.forEachIndexed(Throwables.IndexedConsumer<? super T,? extends E2> action) |
<E extends Exception> void |
ObjIterator.foreachIndexed(Throwables.IndexedConsumer<? super T,E> action) |