Package Torello.Java.Function
Interface ToLongQuadFunction<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 ToLongQuadFunction<A,B,C,D>
Function-Pointer Input:A, B, C, DOutput:long.
This is just an extension of Java's original functional-interface package. Thisinterfaceprovides a "To Long Quad Function" which is a logical-extension of theinterfacefrom the packagejava.util.function.*, which has"To Long Bi-Function". ThisFunctional Interfaceexpects four variable-type parameters instead of two.
Hi-Lited Source-Code:- View Here: Torello/Java/Function/ToLongQuadFunction.java
- Open New Browser-Tab: Torello/Java/Function/ToLongQuadFunction.java
File Size: 1,091 Bytes Line Count: 33 '\n' Characters Found
-
-
Method Summary
@FunctionalInterface: (Lambda) Method Modifier and Type Method longapplyAsLong(A a, B b, C c, D d)
-
-
-
Method Detail
-
applyAsLong
long applyAsLong(A a, B b, C c, D d)
Applies'this'integer-function to the given arguments, and returns the resulting'long'
FunctionalInterface Target-Method:
This method corresponds to the@FunctionalInterfaceAnnotation's method requirement. It is the only non-default, non-staticmethod in this interface, and may be the target of a Lambda-Expression or'::'(double-colon) Function-Pointer.- Parameters:
a- the first input argumentb- the second input argumentc- the third input argumentd- the fourth input argument- Returns:
- The
'long'result.
-
-