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

package polya;

  /**
    * Function1 is an interface defining the function argument to map
   **/

public interface Function1
  {
  Object apply(Object x);
  }



