From cb80d19451b373716250134a4beb402250de2314 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Thu, 23 Mar 2023 15:02:57 +0000 Subject: [PATCH] [ci skip] Fix xmldoc for SpanExtensions.Contains --- X10D/src/Core/SpanExtensions.cs | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/X10D/src/Core/SpanExtensions.cs b/X10D/src/Core/SpanExtensions.cs index 9139faa6a..2d2d00dcc 100644 --- a/X10D/src/Core/SpanExtensions.cs +++ b/X10D/src/Core/SpanExtensions.cs @@ -39,13 +39,16 @@ private static Vector256 IntegerPackingMagicV256 #endif /// - /// Indicate whether a specific enumeration value is found in a span. + /// Returns a value indicating whether a specific enumeration value is contained with the current span of elements. /// - /// - /// The span to search from. - /// The enum to search for. - /// if found, otherwise. - /// Unexpected enum memory size. + /// The type of the elements in . + /// The span of elements. + /// The value to search for. + /// + /// if is contained with ; otherwise, + /// . + /// + /// The size of is unsupported. #if NETSTANDARD2_1 [MethodImpl(MethodImplOptions.AggressiveInlining)] #else @@ -57,13 +60,17 @@ private static Vector256 IntegerPackingMagicV256 } /// - /// Indicate whether a specific enumeration value is found in a span. + /// Returns a value indicating whether a specific enumeration value is contained with the current readonly span of + /// elements. /// - /// - /// The span to search from. - /// The enum to search for. - /// if found, otherwise. - /// Unexpected enum memory size. + /// The type of the elements in . + /// The readonly span of elements. + /// The value to search for. + /// + /// if is contained with ; otherwise, + /// . + /// + /// The size of is unsupported. #if NETSTANDARD2_1 [MethodImpl(MethodImplOptions.AggressiveInlining)] #else