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

Print this page
rev 6189 : 8004015: Add Extends and deaults for basic functional interface types
Summary: Adds the appropriate extends and default methods for  core functional interfaces used by the JSR335 libraries.
Reviewed-by: duke

*** 33,45 **** * @since 1.8 */ public interface BinaryOperator<T> { /** ! * Returns the result of the operation upon the operands. ! * The operands are named {@code left} and {@code right} for operations ! * where the order of operands matters. * * @param left the left operand * @param right the right operand * @return the result of the operation */ --- 33,45 ---- * @since 1.8 */ public interface BinaryOperator<T> { /** ! * Returns the result of the operation upon the operands. The operands are ! * named {@code left} and {@code right} for operations where the order of ! * operands matters. * * @param left the left operand * @param right the right operand * @return the result of the operation */