Interface TriFunction<A,B,C,R>
- Type Parameters:
A- the type of the first argumentB- the type of the second argumentC- 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.
A function that takes three arguments and returns a result.
- Since:
- 0.10.8
-
Method Summary
-
Method Details
-
apply
Applies this function to the given arguments.- Parameters:
a- the first argumentb- the second argumentc- the third argument- Returns:
- the result value
- Since:
- 0.10.8
-