001package Torello.Java.Function;
002
003/**
004 * Function-Pointer
005 * <SPAN CLASS=TJF>Input:</SPAN> {@code A, B, C}
006 * <SPAN CLASS=TJF>Output:</SPAN> {@code short}.
007 * 
008 * <EMBED CLASS='external-html'
009 *      DATA-In=Tri DATA-Number=three DATA-TYPE=short 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 last input-parameter.
014 */
015@FunctionalInterface
016public interface ToShortTriFunction<A, B, C>
017{
018    /**
019     * Applies {@code 'this'} integer-function to the given arguments, and returns the resulting
020     * {@code 'short'}
021     * 
022     * <BR /><BR /><EMBED CLASS='external-html' DATA-FILE-ID=FUNC_INTER_METH>
023     *
024     * @param a the first input argument
025     * @param b the second input argument
026     * @param c the third input argument
027     * @return The {@code 'short'} result.
028     */
029    public short applyAsShort(A a, B b, C c);
030}