Package Torello.Java.Function
Interface ToCharHexFunction<A,B,C,D,E,F>
-
- Type Parameters:
A
- The type of the first input-parameter.B
- The type of the second input-parameter.C
- The type of the third input-parameter.D
- The type of the fourth input-parameter.E
- The type of the fifth input-parameter.F
- 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 ToCharHexFunction<A,B,C,D,E,F>
Function-Pointer Input:A, B, C, D, E, F
Output:char
.
AFunctionalInterface
(Function-Pointer) that points to a function that generates / produces a Javachar
-primitive. This "Hex
" Function acceptssix
arguments as input.
Hi-Lited Source-Code:- View Here: Torello/Java/Function/ToCharHexFunction.java
- Open New Browser-Tab: Torello/Java/Function/ToCharHexFunction.java
File Size: 1,259 Bytes Line Count: 36 '\n' Characters Found
-
-
Method Detail
-
applyAsChar
char applyAsChar(A a, B b, C c, D d, E e, F f)
Applies'this'
integer-function to the given arguments, and returns the resulting'char'
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:
a
- the first input argumentb
- the second input argumentc
- the third input argumentd
- the fourth input argumente
- the fifth input argumentf
- the sixth input argument- Returns:
- The
'char'
result.
-
-