Package blbutil
Interface TriFunction<T,U,V,R>
- Type Parameters:
T
- the type of the first argument to the functionU
- the type of the second argument to the functionV
- the type of the third argument to the functionR
- the type of the result of the function
public interface TriFunction<T,U,V,R>
Class TriFunction
represents a function that accepts three
arguments and produces a result. This functional interface that
is analogous to the java.util.function.BiFunction
interface.
-
Method Summary
-
Method Details
-
apply
Applies this function to the specified arguments.- Parameters:
t
- the first function argumentu
- the second function argumentv
- the third function argument- Returns:
- the function result
- Throws:
NullPointerException
- if any function argument isnull
-