public interface Function2<I1, I2, O>
Function to create an output from two inputs.
abstract O
apply(@NonNull() I1 input1, @NonNull() I2 input2)
I1, I2
O
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
@NonNull() abstract O apply(@NonNull() I1 input1, @NonNull() I2 input2)
Converts I1, I2 to O.
input1
input2