Interface | Description |
---|---|
FiniteArgumentFunction<R> |
This interface represents a function that has a finite argument number in its signature.
|
Func1<T,R> |
Represents a function with one argument.
|
Func2<T1,T2,R> |
Represents a function with two arguments.
|
Func3<T1,T2,T3,R> |
Represents a function with three arguments.
|
Func4<T1,T2,T3,T4,R> |
Represents a function with four arguments.
|
Func5<T1,T2,T3,T4,T5,R> |
Represents a function with five arguments.
|
Func6<T1,T2,T3,T4,T5,T6,R> |
Represents a function with six arguments.
|
Func7<T1,T2,T3,T4,T5,T6,T7,R> |
Represents a function with seven arguments.
|
Func8<T1,T2,T3,T4,T5,T6,T7,T8,R> |
Represents a function with eight arguments.
|
Func9<T1,T2,T3,T4,T5,T6,T7,T8,T9,R> |
Represents a function with nine arguments.
|
FuncN<R> |
Represents a vector-argument function.
|