jdk/src/share/classes/java/util/function/LongFunction.java
changeset 17695 032254f2467b
parent 16011 890a7ed97f6c
child 19040 7b25fde2a4ed
equal deleted inserted replaced
17694:31d23e077ab3 17695:032254f2467b
    41      * Compute the result of applying the function to the input argument
    41      * Compute the result of applying the function to the input argument
    42      *
    42      *
    43      * @param value the input value
    43      * @param value the input value
    44      * @return the function result
    44      * @return the function result
    45      */
    45      */
    46     public R apply(long value);
    46     R apply(long value);
    47 }
    47 }