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