Package eu.bandm.tools.util.function
Interface Function4<D0,D1,D2,D3,R>
- Type Parameters:
D0- the first argument typeD1- the second argument typeD2- the third argument typeD3- the fourth argument typeR- the 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.
A function with four arguments.
-
Method Summary
-
Method Details
-
apply
Applies this function to the given arguments.- Parameters:
arg0- the first function argumentarg1- the second function argumentarg2- the third function argumentarg3- the fourth function argument- Returns:
- the function result
-