SpanFuncT, TResult Delegate
Encapsulates a method that returns a
SpanT.
Namespace: Ookii.CommonAssembly: Ookii.Common (in Ookii.Common.dll) Version: 1.0.0+7c2900b8a16cd8ae46bdd79d8f105034712c5fa3
public delegate Span<TResult> SpanFunc<T, TResult>(
T arg
)
Public Delegate Function SpanFunc(Of T, TResult) (
arg As T
) As Span(Of TResult)
Dim instance As New SpanFunc(Of T, TResult)(AddressOf HandlerMethod)
generic<typename T, typename TResult>
public delegate Span<TResult> SpanFunc(
T arg
)
- arg T
- The first argument for the encapsulated method.
- T
- The type of the first argument.
- TResult
- The type of the items in the SpanT.
SpanTResult
The return value of the method that this delegate encapsulates.