Interface PentaFunction<T,U,V,W,X,R>

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
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 PentaFunction<T,U,V,W,X,R>
Represents a function that accepts four arguments and produces a result. This is the five-arity specialization of Function.
  • Method Summary

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

    • apply

      R apply(T t, U u, V v, W w, X x)
      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 fourd function argument
      x - the fifth function argument
      Returns:
      the function result