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

Print this page
rev 7047 : 8004015: Additional static and instance utils for functional interfaces.
Reviewed-by: briangoetz

*** 41,47 **** * Compute the result of applying the function to the input argument * * @param value the input value * @return the function result */ ! public R apply(int value); } --- 41,47 ---- * Compute the result of applying the function to the input argument * * @param value the input value * @return the function result */ ! R apply(int value); }