Interface HexaFunction<T,U,V,W,X,R,P>

Type Parameters:
T - the type parameter
U - the type parameter
V - the type parameter
W - the type parameter
X - the type parameter
R - the type parameter
P - the type parameter
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 HexaFunction<T,U,V,W,X,R,P>
Represents a function that accepts four arguments and produces a result. This is the six-arity specialization of Function.
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(T t, U u, V v, W w, X x, R r)
    Applies this function to the given arguments.
  • Method Details

    • apply

      P apply(T t, U u, V v, W w, X x, R r)
      Applies this function to the given arguments.
      Parameters:
      t - the first function argument
      u - the second function argument
      v - the third function argument
      w - the fourth function argument
      x - the fifth function argument
      r - the sixth function argument
      Returns:
      the function result