jdk/src/share/classes/java/util/function/IntBinaryOperator.java
changeset 17695 032254f2467b
parent 16011 890a7ed97f6c
child 19040 7b25fde2a4ed
equal deleted inserted replaced
17694:31d23e077ab3 17695:032254f2467b
    42      *
    42      *
    43      * @param left the left operand value
    43      * @param left the left operand value
    44      * @param right  the right operand value
    44      * @param right  the right operand value
    45      * @return the result of the operation
    45      * @return the result of the operation
    46      */
    46      */
    47     public int applyAsInt(int left, int right);
    47     int applyAsInt(int left, int right);
    48 }
    48 }