1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28 | package Torello.Java.Function;
/**
* Function-Pointer
* <SPAN CLASS=TJF>Input:</SPAN> {@code A, B}
* <SPAN CLASS=TJF>Output:</SPAN> {@code float}.
*
* <EMBED CLASS='external-html'
* DATA-In=Bi DATA-Number=two DATA-TYPE=float DATA-FILE-ID=TO_PRIM_MULTI>
*
* @param <A> The type of the first input-parameter.
* @param <B> The type of the second input-parameter.
*/
@FunctionalInterface
public interface ToFloatBiFunction<A, B>
{
/**
* Applies {@code 'this'} integer-function to the given arguments, and returns the resulting
* {@code 'float'}
*
* <BR /><BR /><EMBED CLASS='external-html' DATA-FILE-ID=FUNC_INTER_METH>
*
* @param a the first input argument
* @param b the second input argument
* @return The {@code 'float'} result.
*/
public float applyAsFloat(A a, B b);
}
|