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>
Function-Pointer Input:A, B, C
Output:int
.
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
@FunctionalInterface (Lambda) Method Modifier and Type Method int
applyAsInt(A a, B b, C c)
-