// file:    Function2.java
// author:  Robert Keller
// purpose: Interface Function2 of polya package

package polya;

  /**
    * Function2 is an interface defining a 2-argument function
   **/

public interface Function2
  {
  Object apply(Object x, Object y);
  }



