NullableReadOnlySpanTMapSpanFuncTResult Delegate
Namespace: Ookii.CommonAssembly: Ookii.Common (in Ookii.Common.dll) Version: 1.0.0+7c2900b8a16cd8ae46bdd79d8f105034712c5fa3
public delegate Span<TResult> MapSpanFunc<TResult>(
ReadOnlySpan<T> value
)
Public Delegate Function MapSpanFunc(Of TResult) (
value As ReadOnlySpan(Of T)
) As Span(Of TResult)
Dim instance As New MapSpanFunc(Of TResult)(AddressOf HandlerMethod)
generic<typename TResult>
public delegate Span<TResult> MapSpanFunc(
ReadOnlySpan<T> value
)
- value ReadOnlySpanT
- The value to map.
- TResult
- The type of the items in the resulting SpanT.
SpanTResultThe mapped value.