diff -r 2727163b5df5 -r 890a7ed97f6c jdk/src/share/classes/java/util/function/LongUnaryOperator.java --- a/jdk/src/share/classes/java/util/function/LongUnaryOperator.java Tue Feb 19 10:34:26 2013 -0800 +++ b/jdk/src/share/classes/java/util/function/LongUnaryOperator.java Tue Feb 19 11:56:49 2013 -0800 @@ -26,7 +26,10 @@ /** * An operation on a single {@code long} operand yielding a {@code long} result. + * This is the primitive type specialization of {@link UnaryOperator} for + * {@code long}. * + * @see UnaryOperator * @since 1.8 */ @FunctionalInterface @@ -39,5 +42,5 @@ * @param operand the operand value * @return the operation result value */ - public long operateAsLong(long operand); + public long applyAsLong(long operand); }