/* YOU SHOULD NOT CHANGE THIS FILE. */

/** An IntUnaryFunction represents a function from
 *  integers to integers.
 *  @author P. N. Hilfinger
 */
public interface IntUnaryFunction {
    /** Return the result of applying this function to X. */
    int apply(int x);
}
