// YOU SHOULD NOT CHANGE THIS FILE. /** An IntUnaryFunction represents a function from * integers to integers. */ public interface IntUnaryFunction { /** The result of applying this function to X. */ int apply (int x); }