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