Package com.kirekov.juu.lambda
Interface TriFunction<T1,T2,T3,R>
-
- Type Parameters:
T1- the type of the first argumentT2- the type of the second argumentT3- the type of the third argumentR- the type of the result
- 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 TriFunction<T1,T2,T3,R>Represents the function that accepts three arguments and produces a result.- See Also:
Function,BiFunction
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Rapply(T1 t1, T2 t2, T3 t3)
-