ReadOnlySpanPairCreateTFirst, TSecond Method
Namespace: Ookii.CommonAssembly: Ookii.Common (in Ookii.Common.dll) Version: 1.0.0+7c2900b8a16cd8ae46bdd79d8f105034712c5fa3
public static ReadOnlySpanPair<TFirst, TSecond> Create<TFirst, TSecond>(
ReadOnlySpan<TFirst> first,
ReadOnlySpan<TSecond> second
)
Public Shared Function Create(Of TFirst, TSecond) (
first As ReadOnlySpan(Of TFirst),
second As ReadOnlySpan(Of TSecond)
) As ReadOnlySpanPair(Of TFirst, TSecond)
Dim first As ReadOnlySpan(Of TFirst)
Dim second As ReadOnlySpan(Of TSecond)
Dim returnValue As ReadOnlySpanPair(Of TFirst, TSecond)
returnValue = ReadOnlySpanPair.Create(first,
second)
public:
generic<typename TFirst, typename TSecond>
static ReadOnlySpanPair<TFirst, TSecond> Create(
ReadOnlySpan<TFirst> first,
ReadOnlySpan<TSecond> second
)
- first ReadOnlySpanTFirst
- The first value.
- second ReadOnlySpanTSecond
- The second value.
- TFirst
-
The type of the items in the first value of the ReadOnlySpanPairTFirst, TSecond.
- TSecond
-
The type of the items in the second value of the ReadOnlySpanPairTFirst, TSecond.
ReadOnlySpanPairTFirst,
TSecondA
ReadOnlySpanPairTFirst, TSecond containing the value.