Package Torello.Java.Function
Interface ToLongTriFunction<A,B,C>
-
- Type Parameters:
A
- The type of the first input-parameter.B
- The type of the second input-parameter.C
- 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 ToLongTriFunction<A,B,C>
ToLongTriFunction Documentation.
This is just an extension of Java's original functional-interface package. Thisinterface
provides a "To Long Tri Function" which is a logical-extension of theinterface
from the packagejava.util.function.*
, which has"To Long Bi-Function"
. ThisFunctional Interface
expects three variable-type parameters instead of two.
Hi-Lited Source-Code:
- View Here: Torello/Java/Function/ToLongTriFunction.java
- Open New Browser-Tab: Torello/Java/Function/ToLongTriFunction.java
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method long
applyAsLong(A a, B b, C c)
-
-
-
Method Detail
-
applyAsLong
long applyAsLong(A a, B b, C c)
Applies'this'
integer-function to the given arguments, and returns the resulting'long'
- Parameters:
a
- the first input argumentb
- the second input argumentc
- the third input argument- Returns:
- The
'long'
result.
-
-