static <A,B,E extends java.lang.Exception> java.util.function.Function<A,Try<B>> |
Checked.delayedLift(Checked.Function<A,B,E> f) |
Lifts a function that potentially throws into a function that either
returns a delayed Try, which, when evaluated, returns a Success of the
result or a failure containing the thrown exception.
|
static <A,B,E extends java.lang.Exception> java.util.function.Function<A,Try<B>> |
Checked.lift(Checked.Function<A,B,E> f) |
Lifts a function that potentially throws into a function that either
returns a Success of the value or a failure containing the thrown
exception.
|