Interface TriFunction<T,​U,​V,​R>


  • public interface TriFunction<T,​U,​V,​R>
    • Method Summary

      Modifier and Type Method Description
      R apply​(T t, U u, V v)
      Applies this function to the given arguments.
    • Method Detail

      • apply

        R apply​(T t,
                U u,
                V v)
        Applies this function to the given arguments.
        Parameters:
        t - the first function argument
        u - the second function argument
        v - the third function argument
        Returns:
        the function result