You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Enumerators/SplitSequence/SpanSplitSequenceStringSplitOptionsWithCountEnumerator.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,8 +26,8 @@ public ref struct SpanSplitSequenceStringSplitOptionsWithCountEnumerator
26
26
/// </summary>
27
27
/// <param name="source">The <see cref="ReadOnlySpan{Char}"/> to be split.</param>
28
28
/// <param name="delimiter">An instance of <see cref="ReadOnlySpan{Char}"/> that delimits the various sub-ReadOnlySpans in <paramref name="source"/>.</param>
29
-
/// <param name="options">A bitwise combination of the enumeration values that specifies whether to trim results and include empty results.</param>
30
29
/// <param name="count">The maximum number of sub-ReadOnlySpans to split into.</param>
30
+
/// <param name="options">A bitwise combination of the enumeration values that specifies whether to trim results and include empty results.</param>
31
31
/// <param name="countExceedingBehaviour">The handling of the instances more than count.</param>
/// <typeparam name="T">The type of elements in the <see cref="ReadOnlySpan{T}"/>.</typeparam>
80
80
/// <param name="source">The <see cref="Span{T}"/> to be split.</param>
81
-
/// <param name="count">The maximum number of sub-ReadOnlySpans to split into.</param>
82
81
/// <param name="delimiters">A <see cref="ReadOnlySpan{T}"/>, that delimit the various sub-ReadOnlySpans in <paramref name="source"/>.</param>
82
+
/// <param name="count">The maximum number of sub-ReadOnlySpans to split into.</param>
83
83
/// <param name="countExceedingBehaviour">The handling of the instances more than count.</param>
84
84
/// <returns>An instance of the ref struct <see cref="SpanSplitAnyWithCountEnumerator{T}"/>, which works the same way as every <see cref="IEnumerator"/> does and can be used in a foreach construct.</returns>
@@ -104,8 +104,8 @@ public static SpanSplitAnyStringSplitOptionsEnumerator SplitAny(this Span<char>
104
104
/// </summary>
105
105
/// <param name="source">The <see cref="Span{Char}"/> to be split.</param>
106
106
/// <param name="delimiters">A <see cref="ReadOnlySpan{Char}"/>, that delimit the various sub-ReadOnlySpans in <paramref name="source"/>.</param>
107
-
/// <param name="options">A bitwise combination of the enumeration values that specifies whether to trim results and include empty results.</param>
108
107
/// <param name="count">The maximum number of sub-ReadOnlySpans to split into.</param>
108
+
/// <param name="options">A bitwise combination of the enumeration values that specifies whether to trim results and include empty results.</param>
109
109
/// <param name="countExceedingBehaviour">The handling of the instances more than count.</param>
110
110
/// <returns>An instance of the ref struct <see cref="SpanSplitAnyStringSplitOptionsWithCountEnumerator"/>, which works the same way as every <see cref="IEnumerator"/> does and can be used in a foreach construct.</returns>
0 commit comments