<E extends java.lang.Exception> void |
ShortMatrix.forEach(int fromRowIndex,
int toRowIndex,
int fromColumnIndex,
int toColumnIndex,
Try.ShortConsumer<E> action) |
<E extends java.lang.Exception> void |
ShortList.forEach(int fromIndex,
int toIndex,
Try.ShortConsumer<E> action) |
<E extends java.lang.Exception> void |
ShortList.forEach(Try.ShortConsumer<E> action) |
<E extends java.lang.Exception> void |
ShortMatrix.forEach(Try.ShortConsumer<E> action) |
<E extends java.lang.Exception> void |
ShortPair.forEach(Try.ShortConsumer<E> comsumer) |
<E extends java.lang.Exception> void |
ShortTriple.forEach(Try.ShortConsumer<E> comsumer) |
<E extends java.lang.Exception> void |
ShortIterator.forEachRemaining(Try.ShortConsumer<E> action) |
<E extends java.lang.Exception> void |
OptionalShort.ifPresent(Try.ShortConsumer<E> action)
Have the specified consumer accept the value if a value is present,
otherwise do nothing.
|
<E extends java.lang.Exception,E2 extends java.lang.Exception> void |
OptionalShort.ifPresentOrElse(Try.ShortConsumer<E> action,
Try.Runnable<E2> emptyAction)
If a value is present, performs the given action with the value, otherwise performs the given empty-based action.
|