src/share/classes/java/util/function/IntBinaryOperator.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

@@ -25,13 +25,31 @@
 package java.util.function;
 
 /**
  * An operation on two {@code int} operands yielding an {@code int} result.
  *
+ * <p/>This is the primitive type specialization of {@link BinaryOperator} for
+ * {@code int} and also may be used as a {@code BinaryOperator<Integer>}. When
+ * used as a {@code BinaryOperator} the default {@code operate} implementation
+ * provided by this interface neither accepts null parameters nor does it return
+ * null results.
+ *
  * @since 1.8
  */
-public interface IntBinaryOperator {
+public interface IntBinaryOperator extends BinaryOperator<Integer> {
+
+    /**
+     * {@inheritDoc}
+     *
+     * @param left {@inheritDoc}, must be non-null
+     * @param right {@inheritDoc}, must be non-null
+     * @return {@inheritDoc}, always non-null
+     */
+    @Override
+    public  default Integer operate(Integer left, Integer right) {
+        return operateAsInt((int)left, (int)right);
+    }
 
     /**
      * Returns the {@code int} result of the operation upon the {@code int}
      * operands. The parameters are named {@code left} and {@code right} for
      * operations where the order of parameters matters.