Interface FragileFunction<T,R,E extends java.lang.Throwable>
- 
- Type Parameters:
- T- the type of the input to the function
- R- the type of the result of the function
- E- the type of the- Throwablewhich could be thrown by the function
 - 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 interface FragileFunction<T,R,E extends java.lang.Throwable>AFunctionwhich can throw aThrowable- See Also:
- Function
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description Rapply(T t)Applies this function to the given argument.
 
-