ReadOnlySpanFuncT, TResult Delegate
Namespace: Ookii.CommonAssembly: Ookii.Common (in Ookii.Common.dll) Version: 1.0.0+7c2900b8a16cd8ae46bdd79d8f105034712c5fa3
public delegate ReadOnlySpan<TResult> ReadOnlySpanFunc<T, TResult>(
T arg
)
Public Delegate Function ReadOnlySpanFunc(Of T, TResult) (
arg As T
) As ReadOnlySpan(Of TResult)
Dim instance As New ReadOnlySpanFunc(Of T, TResult)(AddressOf HandlerMethod)
generic<typename T, typename TResult>
public delegate ReadOnlySpan<TResult> ReadOnlySpanFunc(
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 ReadOnlySpanT.
ReadOnlySpanTResult
The return value of the method that this delegate encapsulates.