T1
- the first value typeT2
- the second value typeR
- the result type@FunctionalInterface public interface BiFunction<T1,T2,R>
Modifier and Type | Method and Description |
---|---|
R |
apply(T1 t1,
T2 t2)
Calculate a value based on the input values.
|