001package Torello.Java.Function;
002
003/**
004 * Function-Pointer
005 * <SPAN CLASS=TJF>Input:</SPAN> {@code A, B, C, D, E}
006 * <SPAN CLASS=TJF>Output:</SPAN> {@code double}.
007 * 
008 * <BR /><BR />
009 * <EMBED CLASS='external-html' DATA-FILE-ID=TO_PRIM_BIG_FUNC>
010 * <EMBED CLASS="globalDefs" DATA-Out=Double DATA-In=Quint DATA-Number=five>
011 * 
012 * @param <A> The type of the first input-parameter.
013 * @param <B> The type of the second input-parameter.
014 * @param <C> The type of the third input-parameter.
015 * @param <D> The type of the fourth input-parameter.
016 * @param <E> The type of the last input-parameter.
017 */
018@FunctionalInterface
019public interface ToDoubleQuintFunction<A, B, C, D, E>
020{
021    /**
022     * Applies {@code 'this'} integer-function to the given arguments, and returns the resulting
023     * {@code 'double'}
024     * 
025     * <BR /><BR /><EMBED CLASS='external-html' DATA-FILE-ID=FUNC_INTER_METH>
026     *
027     * @param a the first input argument
028     * @param b the second input argument
029     * @param c the third input argument
030     * @param d the fourth input argument
031     * @param e the fifth input argument
032     * @return The {@code 'double'} result.
033     */
034    public double applyAsDouble(A a, B b, C c, D d, E e);
035}