/**
 * Functions from integers to integers.
 */
public class I2I
{
  /**
   * Apply this function to an integer.
   */
  public int applyTo(int param)
  {
    return 0;
  } // applyTo(int)
} // class I2I

