Package 

Interface Function2


  • 
    public interface Function2<I1, I2, O>
    
                        

    Function to create an output from two inputs.

    • Method Summary

      Modifier and Type Method Description
      abstract O apply(@NonNull() I1 input1, @NonNull() I2 input2) Converts I1, I2 to O.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • apply

        @NonNull() abstract O apply(@NonNull() I1 input1, @NonNull() I2 input2)

        Converts I1, I2 to O.

        Parameters:
        input1 - First input
        input2 - Second input