Interface Function2

All Known Implementing Classes:
Multiplier

interface Function2

Function2 is an interface specification for a function object of 2 arguments. The apply method is called when this function is to be applied to two Objects. It returns an Object.


Method Summary
 java.lang.Object apply(java.lang.Object x, java.lang.Object y)
          Apply this Function1 to two Object arguments, returning an Object.
 

Method Detail

apply

public java.lang.Object apply(java.lang.Object x,
                              java.lang.Object y)
Apply this Function1 to two Object arguments, returning an Object.