Interface F2.TwoArgumentFunction

Enclosing class:
F2

static interface F2.TwoArgumentFunction
Interface for two-argument functions.
  • Method Summary

    Modifier and Type
    Method
    Description
    execute(Function functionData, Object argument1, Object argument2)
    Prototype of the two-argument function
  • Method Details

    • execute

      Object execute(Function functionData, Object argument1, Object argument2)
      Prototype of the two-argument function
      Parameters:
      functionData - Function; meta data of the function
      argument1 - Object; the first argument of the function
      argument2 - Object; the second argument of the function
      Returns:
      Object; the result type of the function