@FunctionalInterface public interface ThrowingFunction<T,R> extends Function<T,R>
default R
apply(T t)
R
doApply(T t)
andThen, compose, identity
R doApply(T t) throws Throwable
Throwable
default R apply(T t)
apply
Function<T,R>