File tree 1 file changed +3
-2
lines changed
src/libraries/System.Private.CoreLib/src/System/IndexOfAnyValues
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 7
7
namespace System . Buffers
8
8
{
9
9
/// <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})"/>.
11
12
/// </summary>
12
13
/// <typeparam name="T">The type of the values to search for.</typeparam>
13
14
/// <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.
15
16
/// </remarks>
16
17
[ DebuggerTypeProxy ( typeof ( IndexOfAnyValuesDebugView < > ) ) ]
17
18
public class IndexOfAnyValues < T > where T : IEquatable < T > ?
You can’t perform that action at this time.
0 commit comments