Package Torello.Java.Function
Interface ToByteTriFunction<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 ToByteTriFunction<A,B,C>
Function-Pointer Input:A, B, C
Output:byte
.
AFunctionalInterface
(Function-Pointer) that is a function for generating / producing a Javabyte
-primitive. This "Tri
" Function acceptsthree
arguments as input.
Hi-Lited Source-Code:- View Here: Torello/Java/Function/ToByteTriFunction.java
- Open New Browser-Tab: Torello/Java/Function/ToByteTriFunction.java
-
-
Method Summary
@FunctionalInterface (Lambda) Method Modifier and Type Method byte
applyAsByte(A a, B b, C c)
-