ReadOnlySpanPairTFirst, TSecondEquality Operator
Namespace: Ookii.CommonAssembly: Ookii.Common (in Ookii.Common.dll) Version: 1.0.0+7c2900b8a16cd8ae46bdd79d8f105034712c5fa3
public static bool operator ==(
ReadOnlySpanPair<TFirst, TSecond> left,
ReadOnlySpanPair<TFirst, TSecond> right
)
Public Shared Operator = (
left As ReadOnlySpanPair(Of TFirst, TSecond),
right As ReadOnlySpanPair(Of TFirst, TSecond)
) As Boolean
Dim left As ReadOnlySpanPair(Of TFirst, TSecond)
Dim right As ReadOnlySpanPair(Of TFirst, TSecond)
Dim returnValue As Boolean
returnValue = (left = right)
public:
static bool operator ==(
ReadOnlySpanPair<TFirst, TSecond> left,
ReadOnlySpanPair<TFirst, TSecond> right
)
- left ReadOnlySpanPairTFirst, TSecond
- The first value to compare.
- right ReadOnlySpanPairTFirst, TSecond
- The second value to compare.
Boolean if the values are equal; otherwise,
.