Interface Result.ThrowableFunction<T,R>

Type Parameters:
T - The type of the function parameter.
R - The function return type.
Enclosing class:
Result<T>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface Result.ThrowableFunction<T,R>
A FunctionalInterface with abstract method apply(Object). Implementations of this interface can be wrapped into a Function<T, Result<R>> using Result.wrapFunctionResult(ThrowableFunction).