Package Torello.Java.Function
Interface IntIntTFunc<T,R>
-
- Type Parameters:
T
- The type of the third (last) input-parameter.R
- The type of the function-output.
- 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 IntIntTFunc<T,R>
Function-Pointer Input:int, int, T
Output:R
.
Utilized inStrCSV
Hi-Lited Source-Code:- View Here: Torello/Java/Function/IntIntTFunc.java
- Open New Browser-Tab: Torello/Java/Function/IntIntTFunc.java
File Size: 809 Bytes Line Count: 26 '\n' Characters Found
-
-
Method Detail
-
apply
R apply(int i, int j, T t)
Allows a user to provide a function of two integers and one typed-Object
.
FunctionalInterface Target-Method:
This method corresponds to the@FunctionalInterface
Annotation's method requirement. It is the only non-default
, non-static
method in this interface, and may be the target of a Lambda-Expression or'::'
(double-colon) Function-Pointer.- Parameters:
i
- First integer argument.j
- Second integer argument.t
- Typedobject
parameter.- Returns:
- The function result. Result shall be of type
'R'
-
-