Skip to content

Commit 55817fe

Browse files
committed
Improve IndexOfAnyValues<T> summary
1 parent 5b648d1 commit 55817fe

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/libraries/System.Private.CoreLib/src/System/IndexOfAnyValues/IndexOfAnyValues.T.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@
77
namespace System.Buffers
88
{
99
/// <summary>
10-
/// Creates an optimized representation of values used for efficient searching.
10+
/// Provides an immutable, read-only set of values optimized for efficient searching.
11+
/// Instances are created by <see cref="IndexOfAnyValues.Create(ReadOnlySpan{byte})"/> or <see cref="IndexOfAnyValues.Create(ReadOnlySpan{char})"/>.
1112
/// </summary>
1213
/// <typeparam name="T">The type of the values to search for.</typeparam>
1314
/// <remarks>
14-
/// IndexOfAnyValues are optimized for situations where the same set of values is frequently used for searching at runtime.
15+
/// <see cref="IndexOfAnyValues{T}"/> are optimized for situations where the same set of values is frequently used for searching at runtime.
1516
/// </remarks>
1617
[DebuggerTypeProxy(typeof(IndexOfAnyValuesDebugView<>))]
1718
public class IndexOfAnyValues<T> where T : IEquatable<T>?

0 commit comments

Comments
 (0)