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 functionR - the type of the result of the function@FunctionalInterface public interface TriFunction<A,B,C,R>
| Modifier and Type | Method and Description |
|---|---|
R |
apply(A first,
B second,
C third)
Applies this function to the given arguments.
|
Copyright © 2017. All rights reserved.