Interface BiFunction<A1,​A2,​R>

Type Parameters:
R - the return type
A1 - the first argument type
A2 - the second argument type

public interface BiFunction<A1,​A2,​R>
A basic rip-off of BiFunction from Java 8.
  • Method Summary

    Modifier and Type Method Description
    R apply​(A1 arg1, A2 arg2)  
  • Method Details

    • apply

      R apply​(A1 arg1, A2 arg2)
      Parameters:
      arg1 - the first argument
      arg2 - the second argument
      Returns:
      the return value