Package Torello.Java.Function
Interface IntIntFloatFunc<R>
-
- Type Parameters:
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 IntIntFloatFunc<R>
Function-Pointer Input:int, int, float
Output:R
.
Primitive's Extension to Java'sjava.util.function.*
package.
ThisFunctionalInterface
has anapply(...)
method which accepts three primitives: twoint
-primitives, and onefloat
.
Hi-Lited Source-Code:- View Here: Torello/Java/Function/IntIntFloatFunc.java
- Open New Browser-Tab: Torello/Java/Function/IntIntFloatFunc.java
File Size: 1,904 Bytes Line Count: 48 '\n' Characters Found
-
-
Method Summary
@FunctionalInterface: (Lambda) Method Modifier and Type Method R
apply(int i1, int i2, float f)
Default Composition & Builder Method(s) Modifier and Type Method default <V> IntIntFloatFunc<V>
andThen(Function<R,V> after)
-
-
-
Method Detail
-
apply
R apply(int i1, int i2, float f)
Applies a user-provided function to input aruments, returning a result of typeR
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:
i1
- The first integer-parameter.i2
- The second integer-parameter.f
- A'float'
parameter.- Returns:
- The function result. Result shall be of type
'R'
-
andThen
default <V> IntIntFloatFunc<V> andThen (java.util.function.Function<R,V> after)
Returns a composed function that first applies'this'
function to its input, and then applies the'after'
function to the result. If evaluation of either function throws an exception, it is relayed to the caller of the composed function.- Type Parameters:
V
- The output-type of the'after'
function, and also of the (returned)'composed'
function.- Parameters:
after
- The function to apply, after this function is applied.- Throws:
java.lang.NullPointerException
- This throws if null is passed to'after'
.- Code:
- Exact Method Body:
if (after == null) throw new NullPointerException ("null has been passed to parameter 'after'"); return (int i1, int i2, float f) -> after.apply(this.apply(i1, i2, f));
-
-