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 long}.
007 * 
008 * <BR /><BR />
009 * <EMBED CLASS="external-html" DATA-FILE-ID=TOPRIMBIGF>
010 * <EMBED CLASS="globalDefs" DATA-Out=Long DATA-In=Tri DATA-Number=three>
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 ToLongTriFunction<A, B, C>
017{
018    /**
019     * Applies {@code 'this'} integer-function to the given arguments, and returns the resulting
020     * {@code 'long'}
021     * @param a the first input argument
022     * @param b the second input argument
023     * @param c the third input argument
024     * @return The {@code 'long'} result.
025     */
026    public long applyAsLong(A a, B b, C c);
027}