Interface TriFunction<T,U,V,R>
- Type Parameters:
T- first argument typeU- second argument typeV- third argument typeR- result type
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Three-argument variant of
Function.-
Method Summary
-
Method Details
-
apply
-
andThen
Returns a composedTriFunctionthat first applies this function and then appliesafterto the result.- Type Parameters:
K- result type of the composed function- Parameters:
after- function applied to the result of this function- Returns:
- the composed function
-