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