Interface TerFunction<T1,​T2,​T3,​R>

  • Type Parameters:
    T1 - the type of the first argument
    T2 - the type of the second argument
    T3 - the type of the third argument
    R - the type of the return value

    public interface TerFunction<T1,​T2,​T3,​R>
    Functional interface for ternary functions.
    Author:
    Herbert Praehofer
    • Method Detail

      • apply

        R apply​(T1 t1,
                T2 t2,
                T3 t3)
        Abstract method of the ternary function.
        Parameters:
        t1 - the first argument
        t2 - the second argument
        t3 - the third argument
        Returns:
        the result value