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
/// <param name="delimiters">A <see cref="ReadOnlySpan{T}"/> with the instances of <typeparamref name="T"/> that delimit the various sub-ReadOnlySpans in <paramref name="source"/>.</param>
28
28
/// <param name="count">The maximum number of sub-ReadOnlySpans to split into.</param>
29
29
/// <param name="countExceedingBehaviour">The handling of the instances more than count.</param>
/// <param name="delimiter">An instance of <see cref="ReadOnlySpan{T}"/> that delimits the various sub-ReadOnlySpans in <paramref name="source"/>.</param>
28
28
/// <param name="count">The maximum number of sub-ReadOnlySpans to split into.</param>
29
29
/// <param name="countExceedingBehaviour">The handling of the instances more than count.</param>
Copy file name to clipboardExpand all lines: src/Extensions/ReadOnlySpan/ReadOnlySpanExtensions.Split.cs
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ public static SpanSplitEnumerator<T> Split<T>(this ReadOnlySpan<T> source, T del
30
30
/// <param name="count">The maximum number of sub-ReadOnlySpans to split into.</param>
31
31
/// <param name="countExceedingBehaviour">The handling of the instances more than count.</param>
32
32
/// <returns>An instance of the ref struct <see cref="SpanSplitWithCountEnumerator{T}"/>, which works the same way as every <see cref="IEnumerator"/> does and can be used in a foreach construct.</returns>
@@ -56,7 +56,7 @@ public static SpanSplitStringSplitOptionsEnumerator Split(this ReadOnlySpan<char
56
56
/// <param name="options">A bitwise combination of the enumeration values that specifies whether to trim results and include empty results.</param>
57
57
/// <param name="countExceedingBehaviour">The handling of the instances more than count.</param>
58
58
/// <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>
@@ -82,7 +82,7 @@ public static SpanSplitAnyEnumerator<T> SplitAny<T>(this ReadOnlySpan<T> source,
82
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>
@@ -108,7 +108,7 @@ public static SpanSplitAnyStringSplitOptionsEnumerator SplitAny(this ReadOnlySpa
108
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>
@@ -134,7 +134,7 @@ public static SpanSplitSequenceEnumerator<T> Split<T>(this ReadOnlySpan<T> sourc
134
134
/// <param name="count">The maximum number of sub-ReadOnlySpans to split into.</param>
135
135
/// <param name="countExceedingBehaviour">The handling of the instances more than count.</param>
136
136
/// <returns>An instance of the ref struct , which works the same way as every <see cref="IEnumerator"/> does and can be used in a foreach construct.</returns>
@@ -160,7 +160,7 @@ public static SpanSplitSequenceStringSplitOptionsEnumerator Split(this ReadOnlyS
160
160
/// <param name="options">A bitwise combination of the enumeration values that specifies whether to trim results and include empty results.</param>
161
161
/// <param name="countExceedingBehaviour">The handling of the instances more than count.</param>
162
162
/// <returns>An instance of the ref struct <see cref="SpanSplitSequenceStringSplitOptionsWithCountEnumerator"/>, which works the same way as every <see cref="IEnumerator"/> does and can be used in a foreach construct.</returns>
0 commit comments