Package civitas.celestis.util.function
Interface TernaryOperator<T>
- Type Parameters:
T- The type parameter of this function
- 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 which takes three parameters of the same type, then returns a value of that same type.
-
Method Summary
-
Method Details
-
apply
Applies this function, then returns the result of the operation.- Parameters:
t1- The first input parametert2- The second input parametert3- The third input parameter- Returns:
- The result of this operation
-