A - the type of the first argument to the functionB - the type of the second argument to the functionC - the type of the third argument to the functionD - the type of the fourth argument to the functionR - the type of the result of the function@FunctionalInterface public interface QuadFunction<A,B,C,D,R>
| Modifier and Type | Method and Description |
|---|---|
R |
apply(A first,
B second,
C third,
D fourth)
Applies this function to the given arguments.
|
R apply(A first, B second, C third, D fourth)
first - the first argument to the operationsecond - the second argument to the operationthird - the third argument to the operationfourth - the third argument to the operationCopyright © 2017. All rights reserved.