Interface ToShortQuintFunction<A,​B,​C,​D,​E>

  • Type Parameters:
    A - The type of the first input-parameter.
    B - The type of the second input-parameter.
    C - The type of the third input-parameter.
    D - The type of the fourth input-parameter.
    E - The type of the last input-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 ToShortQuintFunction<A,​B,​C,​D,​E>
    Function-Pointer Input: A, B, C, D, E Output: short.

    A FunctionalInterface (Function-Pointer) that points to a function that generates / produces a Java short-primitive. This "Quint" Function accepts five arguments as input.


    • Method Summary

       
      @FunctionalInterface: (Lambda) Method
      Modifier and Type Method
      short applyAsShort​(A a, B b, C c, D d, E e)
    • Method Detail

      • applyAsShort

          🗕  🗗  🗖
        short applyAsShort​(A a,
                           B b,
                           C c,
                           D d,
                           E e)
        Applies 'this' integer-function to the given arguments, and returns the resulting 'short'

        FunctionalInterface Target-Method:
        This method corresponds to the @FunctionalInterface Annotation's method requirement. It is the only non-default, non-static method in this interface, and may be the target of a Lambda-Expression or '::' (double-colon) Function-Pointer.
        Parameters:
        a - the first input argument
        b - the second input argument
        c - the third input argument
        d - the fourth input argument
        e - the fifth input argument
        Returns:
        The 'short' result.