Interface IntIntTFunc<T,​R>

  • Type Parameters:
    T - The type of the third (last) input-parameter.
    R - The type of the function-output.
    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 IntIntTFunc<T,​R>
    Function-Pointer Input: int, int, T Output: R.

    Utilized in StrCSV


    • Method Summary

       
      @FunctionalInterface (Lambda) Method
      Modifier and Type Method
      R apply​(int i, int j, T t)
    • Method Detail

      • apply

         
        R apply​(int i,
                int j,
                T t)
        Allows a user to provide a function of two integers and one typed-Object.
        Parameters:
        i - First integer argument.
        j - Second integer argument.
        t - Typed object parameter.
        Returns:
        The function result. Result shall be of type 'R'