NullableReadOnlySpanPairTFirst, TSecondMapStructFuncTResult Delegate
Namespace: Ookii.CommonAssembly: Ookii.Common (in Ookii.Common.dll) Version: 1.0.0+7c2900b8a16cd8ae46bdd79d8f105034712c5fa3
public delegate TResult MapStructFunc<TResult>(
ReadOnlySpanPair<TFirst, TSecond> value
)
where TResult : struct, new()
Public Delegate Function MapStructFunc(Of TResult As {Structure, New}) (
value As ReadOnlySpanPair(Of TFirst, TSecond)
) As TResult
Dim instance As New MapStructFunc(Of TResult)(AddressOf HandlerMethod)
generic<typename TResult>
where TResult : value class, gcnew()
public delegate TResult MapStructFunc(
ReadOnlySpanPair<TFirst, TSecond> value
)
- value ReadOnlySpanPairTFirst, TSecond
- The value to map.
- TResult
- The type of the resulting value.
TResultThe mapped value.