Interface BiFunction<T1,T2,TResult>

Type Parameters:
T1 - - type of the first parameter.
T2 - - type of the second parameter.
TResult - - type of the return value.

public interface BiFunction<T1,T2,TResult>
Represents a function that accepts two parameters.
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(T1 arg1, T2 arg2)
     
  • Method Details