NullableReadOnlySpanTMapClassFuncTResult Delegate
Encapsulates a method that maps a
ReadOnlySpanT 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>(
ReadOnlySpan<T> value
)
where TResult : class
Public Delegate Function MapClassFunc(Of TResult As Class) (
value As ReadOnlySpan(Of T)
) As TResult
Dim instance As New MapClassFunc(Of TResult)(AddressOf HandlerMethod)
generic<typename TResult>
where TResult : ref class
public delegate TResult MapClassFunc(
ReadOnlySpan<T> value
)
- value ReadOnlySpanT
- The value to map.
- TResult
- The type of the resulting value.
TResultThe mapped value.