We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d28a0fc commit d89326bCopy full SHA for d89326b
src/Verify/Serialization/Scrubbers/CrossChunkMatcher.cs
@@ -90,7 +90,11 @@ public delegate void CrossChunkHandler<TContext>(
90
/// <summary>
91
/// Callback for processing positions within a chunk.
92
/// </summary>
93
- /// <returns>Number of positions to skip ahead (0 or 1 for normal iteration, more to skip past a match)</returns>
+ /// <returns>
94
+ /// Number of positions to skip ahead.
95
+ /// Returning 0 or 1 will both advance by 1 position (normal iteration);
96
+ /// returning a value greater than 1 will skip past a match.
97
+ /// </returns>
98
public delegate int WithinChunkHandler<TContext>(
99
ReadOnlyMemory<char> chunk,
100
CharSpan chunkSpan,
0 commit comments