NullableReadOnlySpanPairTFirst, TSecondMapReadOnlyFuncTResultFirst, TResultSecond Delegate

Encapsulates a method that maps a ReadOnlySpanPairTFirst, TSecond to another ReadOnlySpanPairTFirst, TSecond.

Definition

Namespace: Ookii.Common
Assembly: Ookii.Common (in Ookii.Common.dll) Version: 1.0.0+7c2900b8a16cd8ae46bdd79d8f105034712c5fa3
C#
public delegate ReadOnlySpanPair<TResultFirst, TResultSecond> MapReadOnlyFunc<TResultFirst, TResultSecond>(
	ReadOnlySpanPair<TFirst, TSecond> value
)

Parameters

value  ReadOnlySpanPairTFirst, TSecond
The value to map.

Type Parameters

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.

Return Value

ReadOnlySpanPairTResultFirst, TResultSecond
The mapped value.

See Also