Package civitas.celestis.util.function
Interface QuadFunction<T,U,V,W,R>
- Type Parameters:
T- The first input parameterU- The second input parameterV- The third input parameterW- The fourth input parameterR- The return value 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 four parameters of different types as its input,
then returns a single value whose type is not necessarily related to its input parameters.
-
Method Summary
-
Method Details
-
apply
Applies this function to the provided parameters.- Parameters:
t- The first parameter of this functionu- The second parameter of this functionv- The third parameter of this functionw- The fourth parameter of this function- Returns:
- The return value of this function
-