Interface ObjIntFunction<VALUE,RESULT>

Type Parameters:
VALUE - The type of the first function argument
RESULT - The type of the result.
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ObjIntFunction<VALUE,RESULT>
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(VALUE value, int i)
     
  • Method Details

    • apply

      RESULT apply(VALUE value, int i)
      Parameters:
      value - The value to apply.
      i - The integer value to apply.
      Returns:
      The result of applying the given value and integer.