NullableSpanTMapStructFuncTResult Delegate
Encapsulates a method that maps a
SpanT to a structure
with the type
TResult.
Namespace: Ookii.CommonAssembly: Ookii.Common (in Ookii.Common.dll) Version: 1.0.0+7c2900b8a16cd8ae46bdd79d8f105034712c5fa3
public delegate TResult MapStructFunc<TResult>(
Span<T> value
)
where TResult : struct, new()
Public Delegate Function MapStructFunc(Of TResult As {Structure, New}) (
value As Span(Of T)
) As TResult
Dim instance As New MapStructFunc(Of TResult)(AddressOf HandlerMethod)
generic<typename TResult>
where TResult : value class, gcnew()
public delegate TResult MapStructFunc(
Span<T> value
)
- value SpanT
- The value to map.
- TResult
- The type of the resulting value.
TResultThe mapped value.