static <T,E extends Exception> ExceptionalStream<T,E> |
ExceptionalStream.iterate(Throwables.BooleanSupplier<? extends E> hasNext,
Throwables.Supplier<? extends T,E> next) |
static <T> ExceptionalStream<T,RuntimeException> |
ExceptionalStream.Seq.iterate(Throwables.BooleanSupplier<? extends RuntimeException> hasNext,
Throwables.Supplier<? extends T,RuntimeException> next) |
static <T,E extends Exception> ExceptionalStream<T,E> |
ExceptionalStream.iterate(T init,
Throwables.BooleanSupplier<? extends E> hasNext,
Throwables.UnaryOperator<T,? extends E> f) |
static <T> ExceptionalStream<T,RuntimeException> |
ExceptionalStream.Seq.iterate(T init,
Throwables.BooleanSupplier<? extends RuntimeException> hasNext,
Throwables.UnaryOperator<T,? extends RuntimeException> f) |
<E extends Exception> boolean |
u.OptionalBoolean.orElseGet(Throwables.BooleanSupplier<E> other)
Or else get.
|