Delegate RefFunc<T, TResult>
- Namespace
- PolyType.Abstractions
- Assembly
- PolyType.dll
Delegate representing a function that takes a single argument by reference and returns a value.
public delegate TResult RefFunc<T, TResult>(ref T arg)
Parameters
arg
TThe parameter of the method that this delegate encapsulates.
Returns
- TResult
The return value of the method that this delegate encapsulates.
Type Parameters
T
The parameter type of the delegate.
TResult
The result type of the delegate.