I1 - the first input type, that this Apply will be applied toI2 - the second input type, that this Apply will be applied toR - the return type, that the results of the application will havepublic static interface FI.Apply2<I1,I2,R>
| Modifier and Type | Method and Description |
|---|---|
R |
apply(I1 i1,
I2 i2)
The application to perform.
|