Interface TriFunction<T1,T2,T3,R>

Type Parameters:
T1 - parameter type 1.
T2 - parameter type 2.
T3 - parameter type 3.
R - Return type.
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>
A functional interface that implements TriFunction. In a TriFunction we specify the types of 3 arguments and a return value.
Author:
Syam