Interface TriFunction<T,U,V,R>
- Type Parameters:
T
- the type of the first argumentU
- the type of the 2nd argumentV
- the type of the 3rd argumentR
- the 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.
Represent a function that accepts 3 arguments and produces a result.
- See Also:
-
Method Summary
-
Method Details
-
apply
Apply the function to the specified arguments.- Parameters:
t
- the first argumentu
- the 2nd argumentv
- the 3rd argument- Returns:
- the return value
-