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 char}.
007 * 
008 * <EMBED CLASS='external-html'
009 *      DATA-In=Quint DATA-Number=five DATA-TYPE=char 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 * @param <C> The type of the third input-parameter.
014 * @param <D> The type of the fourth input-parameter.
015 * @param <E> The type of the last input-parameter.
016 */
017@FunctionalInterface
018public interface ToCharQuintFunction<A, B, C, D, E>
019{
020    /**
021     * Applies {@code 'this'} integer-function to the given arguments, and returns the resulting
022     * {@code 'char'}
023     * 
024     * <BR /><BR /><EMBED CLASS='external-html' DATA-FILE-ID=FUNC_INTER_METH>
025     *
026     * @param a the first input argument
027     * @param b the second input argument
028     * @param c the third input argument
029     * @param d the fourth input argument
030     * @param e the fifth input argument
031     * @return The {@code 'char'} result.
032     */
033    public char applyAsChar(A a, B b, C c, D d, E e);
034}