Package Torello.Java.Function
Interface ToCharBiFunction<A,B>
-
- Type Parameters:
A
- The type of the first input-parameter.B
- The type of the second 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 ToCharBiFunction<A,B>
Function-Pointer Input:A, B
Output:char
.
AFunctionalInterface
(Function-Pointer) that is a function for generating / producing a Javachar
-primitive. This "Bi
" Function acceptstwo
arguments as input.
Hi-Lited Source-Code:- View Here: Torello/Java/Function/ToCharBiFunction.java
- Open New Browser-Tab: Torello/Java/Function/ToCharBiFunction.java
-
-
Method Summary
@FunctionalInterface (Lambda) Method Modifier and Type Method char
applyAsChar(A a, B b)
-
-
-
Method Detail
-
applyAsChar
char applyAsChar(A a, B b)
Applies'this'
integer-function to the given arguments, and returns the resulting'char'
- Parameters:
a
- the first input argumentb
- the second input argument- Returns:
- The
'char'
result.
-
-