001package Torello.Java.Function;
002
003/**
004 * Function-Pointer
005 * <SPAN CLASS=TJF>Input:</SPAN> {@code A, B}
006 * <SPAN CLASS=TJF>Output:</SPAN> {@code float}.
007 * 
008 * <EMBED CLASS='external-html'
009 *      DATA-In=Bi DATA-Number=two DATA-TYPE=float DATA-FILE-ID=TO_PRIM_MULTI>
010 * 
011 * @param <A> The type of the first input-parameter.
012 * @param <B> The type of the second input-parameter.
013 */
014@FunctionalInterface
015public interface ToFloatBiFunction<A, B>
016{
017    /**
018     * Applies {@code 'this'} integer-function to the given arguments, and returns the resulting
019     * {@code 'float'}
020     * 
021     * <BR /><BR /><EMBED CLASS='external-html' DATA-FILE-ID=FUNC_INTER_METH>
022     *
023     * @param a the first input argument
024     * @param b the second input argument
025     * @return The {@code 'float'} result.
026     */
027    public float applyAsFloat(A a, B b);
028}