NullableSpanTMapClassFuncTResult Delegate
Encapsulates a method that maps a
SpanT to a class with
the type
TResult.
Namespace: Ookii.CommonAssembly: Ookii.Common (in Ookii.Common.dll) Version: 1.0.0+7c2900b8a16cd8ae46bdd79d8f105034712c5fa3
public delegate TResult MapClassFunc<TResult>(
Span<T> value
)
where TResult : class
Public Delegate Function MapClassFunc(Of TResult As Class) (
value As Span(Of T)
) As TResult
Dim instance As New MapClassFunc(Of TResult)(AddressOf HandlerMethod)
generic<typename TResult>
where TResult : ref class
public delegate TResult MapClassFunc(
Span<T> value
)
- value SpanT
- The value to map.
- TResult
- The type of the resulting value.
TResultThe mapped value.