NullableReadOnlySpanPairTFirst, TSecondMapReadOnlyFuncTResultFirst, TResultSecond Delegate
Namespace: Ookii.CommonAssembly: Ookii.Common (in Ookii.Common.dll) Version: 1.0.0+7c2900b8a16cd8ae46bdd79d8f105034712c5fa3
public delegate ReadOnlySpanPair<TResultFirst, TResultSecond> MapReadOnlyFunc<TResultFirst, TResultSecond>(
	ReadOnlySpanPair<TFirst, TSecond> value
)
Public Delegate Function MapReadOnlyFunc(Of TResultFirst, TResultSecond) ( 
	value As ReadOnlySpanPair(Of TFirst, TSecond)
) As ReadOnlySpanPair(Of TResultFirst, TResultSecond)
Dim instance As New MapReadOnlyFunc(Of TResultFirst, TResultSecond)(AddressOf HandlerMethod)
generic<typename TResultFirst, typename TResultSecond>
public delegate ReadOnlySpanPair<TResultFirst, TResultSecond> MapReadOnlyFunc(
	ReadOnlySpanPair<TFirst, TSecond> value
)
- value  ReadOnlySpanPairTFirst, TSecond
 - The value to map.
 
- TResultFirst
 - 
            The type of the items in the first value of the resulting
            NullableReadOnlySpanPairTFirst, TSecond.
            
 - TResultSecond
 - 
            The type of the items in the second value of the resulting
            NullableReadOnlySpanPairTFirst, TSecond.
            
 
ReadOnlySpanPairTResultFirst, 
TResultSecondThe mapped value.