- Type Parameters:
 
T1 - The type of the first input to the function 
T2 - The type of the second input to the function 
T3 - The type of the third input to the function 
T4 - The type of the fourth input to the function 
T5 - The type of the fifth input to the function 
T6 - The type of the sixth input to the function 
T7 - The type of the seventh input to the function 
R - the type of the result of 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 Function7<T1,T2,T3,T4,T5,T6,T7,R>
Represents a function that accepts seven arguments and produces a result.
- Author:
 
- Ben Hale