Package Torello.Java.Function
Interface ToShortQuadFunction<A,B,C,D>
-
- 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 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 ToShortQuadFunction<A,B,C,D>
Function-Pointer Input:A, B, C, D
Output:short
.
AFunctionalInterface
(Function-Pointer) that is a function for generating / producing a Javashort
-primitive. This "Quad
" Function acceptsfour
arguments as input.
Hi-Lited Source-Code:- View Here: Torello/Java/Function/ToShortQuadFunction.java
- Open New Browser-Tab: Torello/Java/Function/ToShortQuadFunction.java
-
-
Method Summary
@FunctionalInterface (Lambda) Method Modifier and Type Method short
applyAsShort(A a, B b, C c, D d)
-
-
-
Method Detail
-
applyAsShort
short applyAsShort(A a, B b, C c, D d)
Applies'this'
integer-function to the given arguments, and returns the resulting'short'
- Parameters:
a
- the first input argumentb
- the second input argumentc
- the third input argumentd
- the fourth input argument- Returns:
- The
'short'
result.
-
-