src/share/classes/java/util/function/IntFunction.java

Print this page
rev 6273 : 8004561: Additional functional interfaces, extension methods and name changes
Summary: Adds additional functional interfaces for primitives and "Bi" (two operand). Adds utility extension methods. Includes some name changes for existing functional interfaces per EG decisions.
Reviewed-by: briangoetz

*** 23,34 **** * questions. */ package java.util.function; /** ! * Apply a function to the input object yielding an appropriate {@code int} ! * value; this is the {@code int}-bearing specialization for {@link Function}. * * @param <T> the type of input objects to the function * * @since 1.8 */ --- 23,34 ---- * questions. */ package java.util.function; /** ! * Apply a function to an input object yielding an {@code int} value; this is ! * the {@code int}-bearing specialization for {@link Function}. * * @param <T> the type of input objects to the function * * @since 1.8 */