1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25 | package Torello.Java.Function;
/**
* <CODE>ToLongQuadFunction Documentation.</CODE><BR /><BR />
* <EMBED CLASS="external-html" DATA-FILE-ID=TOPRIMBIGF>
* <EMBED CLASS="globalDefs" DATA-Out=Long DATA-In=Quad DATA-Number=four>
* @param <A> The type of the first input-parameter.
* @param <B> The type of the second input-parameter.
* @param <C> The type of the third input-parameter.
* @param <D> The type of the last input-parameter.
*/
@FunctionalInterface
public interface ToLongQuadFunction<A, B, C, D>
{
/**
* Applies {@code 'this'} integer-function to the given arguments, and returns the resulting
* {@code 'long'}
* @param a the first input argument
* @param b the second input argument
* @param c the third input argument
* @param d the fourth input argument
* @return The {@code 'long'} result.
*/
public long applyAsLong(A a, B b, C c, D d);
}
|