Interface TriFunction<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 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 TriFunction<T1,​T2,​T3,​R>
    Represents the function that accepts three arguments and produces a result.
    See Also:
    Function, BiFunction
    • Method Detail

      • apply

        R apply​(T1 t1,
                T2 t2,
                T3 t3)