Interface BiIntFunction<T,​R>

  • Type Parameters:
    T - The other argument to this function.
    R - Result of this function.
    All Known Subinterfaces:
    AutoRetryStrategyProvider.AutoRetryStrategy
    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 BiIntFunction<T,​R>
    A special function that takes an int and a custom argument and returns the result.
    • Method Detail

      • apply

        R apply​(int i,
                T t)
        Evaluates this function on the given arguments.
        Parameters:
        i - The int argument.
        t - The BiIntFunction argument.
        Returns:
        Result BiIntFunction of this function.