Func<T,TResult> Delegate
Definition
Encapsulates a method that has one parameter and returns a value of the type specified by the TResult parameter.
Delphi
type Func<T,TResult> = reference to function(const arg: T): TResult
Type Parameters
- T
- TResult
Parameters
- arg
- T
Returns
TResult
- Inheritance
-
IInterfaceFunc<T,TResult>