Interface IntBiFunction<T,​R>

  • Type Parameters:
    T - the type of the first argument of the function
    R - the result the function
    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 IntBiFunction<T,​R>
    Similar to a BiFunction but one of the arguments is a primitive integer.
    • Method Detail

      • apply

        R apply​(T value,
                int integer)