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/Extensions/ReadOnlySpan/String/SplitAny.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ public static partial class ReadOnlySpanExtensions
13
13
/// <param name="source">The <see cref="ReadOnlySpan{T}"/> to be split.</param>
14
14
/// <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>
15
15
/// <returns>An instance of the ref struct <see cref="SpanSplitAnyEnumerator{T}"/>, which works the same way as every <see cref="IEnumerator"/> does and can be used in a foreach construct.</returns>
@@ -27,7 +27,7 @@ public static SpanSplitAnyEnumerator<T> SplitAny<T>(this ReadOnlySpan<T> source,
27
27
/// <param name="count">The maximum number of sub-ReadOnlySpans to split into.</param>
28
28
/// <param name="countExceedingBehaviour">The handling of the instances more than count.</param>
29
29
/// <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>
@@ -39,7 +39,7 @@ public static SpanSplitAnyWithCountEnumerator<T> SplitAny<T>(this ReadOnlySpan<T
39
39
/// <param name="delimiters">A <see cref="ReadOnlySpan{Char}"/>, that delimit the various sub-ReadOnlySpans in <paramref name="source"/>.</param>
40
40
/// <param name="options">A bitwise combination of the enumeration values that specifies whether to trim results and include empty results.</param>
41
41
/// <returns>An instance of the ref struct <see cref="SpanSplitAnyStringSplitOptionsEnumerator"/>, which works the same way as every <see cref="IEnumerator"/> does and can be used in a foreach construct.</returns>
@@ -53,7 +53,7 @@ public static SpanSplitAnyStringSplitOptionsEnumerator SplitAny(this ReadOnlySpa
53
53
/// <param name="options">A bitwise combination of the enumeration values that specifies whether to trim results and include empty results.</param>
54
54
/// <param name="countExceedingBehaviour">The handling of the instances more than count.</param>
55
55
/// <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>
Copy file name to clipboardExpand all lines: src/Extensions/ReadOnlySpan/String/SplitSequence.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ public static partial class ReadOnlySpanExtensions
13
13
/// <param name="source">The <see cref="ReadOnlySpan{T}"/> to be split.</param>
14
14
/// <param name="delimiter">An instance of <see cref="ReadOnlySpan{T}"/> that delimits the various sub-ReadOnlySpans in <paramref name="source"/>.</param>
15
15
/// <returns>An instance of the ref struct <see cref="SpanSplitSequenceEnumerator{T}"/>, which works the same way as every <see cref="IEnumerator"/> does and can be used in a foreach construct.</returns>
@@ -27,7 +27,7 @@ public static SpanSplitSequenceEnumerator<T> Split<T>(this ReadOnlySpan<T> sourc
27
27
/// <param name="count">The maximum number of sub-ReadOnlySpans to split into.</param>
28
28
/// <param name="countExceedingBehaviour">The handling of the instances more than count.</param>
29
29
/// <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>
@@ -39,7 +39,7 @@ public static SpanSplitSequenceWithCountEnumerator<T> Split<T>(this ReadOnlySpan
39
39
/// <param name="delimiter">An instance of <see cref="ReadOnlySpan{Char}"/> that delimits the various sub-ReadOnlySpans in <paramref name="source"/>.</param>
40
40
/// <param name="options">A bitwise combination of the enumeration values that specifies whether to trim results and include empty results.</param>
41
41
/// <returns>An instance of the ref struct <see cref="SpanSplitSequenceStringSplitOptionsEnumerator"/>, which works the same way as every <see cref="IEnumerator"/> does and can be used in a foreach construct.</returns>
@@ -53,7 +53,7 @@ public static SpanSplitSequenceStringSplitOptionsEnumerator Split(this ReadOnlyS
53
53
/// <param name="options">A bitwise combination of the enumeration values that specifies whether to trim results and include empty results.</param>
54
54
/// <param name="countExceedingBehaviour">The handling of the instances more than count.</param>
55
55
/// <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>
Copy file name to clipboardExpand all lines: src/Extensions/Span/String/Split.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ public static partial class SpanExtensions
13
13
/// <param name="source">The <see cref="Span{T}"/> to be split.</param>
14
14
/// <param name="delimiter">An instance of <typeparamref name="T"/> that delimits the various sub-ReadOnlySpans in <paramref name="source"/>.</param>
15
15
/// <returns>An instance of the ref struct <see cref="SpanSplitEnumerator{T}"/>, which works the same way as every <see cref="IEnumerator"/> does and can be used in a foreach construct.</returns>
@@ -27,7 +27,7 @@ public static SpanSplitEnumerator<T> Split<T>(this Span<T> source, T delimiter)
27
27
/// <param name="count">The maximum number of sub-ReadOnlySpans to split into.</param>
28
28
/// <param name="countExceedingBehaviour">The handling of the instances more than count.</param>
29
29
/// <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>
@@ -39,7 +39,7 @@ public static SpanSplitWithCountEnumerator<T> Split<T>(this Span<T> source, T de
39
39
/// <param name="delimiter">A <see cref="char"/> that delimits the various sub-ReadOnlySpans in <paramref name="source"/>.</param>
40
40
/// <param name="options">A bitwise combination of the enumeration values that specifies whether to trim results and include empty results.</param>
41
41
/// <returns>An instance of the ref struct <see cref="SpanSplitStringSplitOptionsEnumerator"/>, which works the same way as every <see cref="IEnumerator"/> does and can be used in a foreach construct.</returns>
@@ -53,7 +53,7 @@ public static SpanSplitStringSplitOptionsEnumerator Split(this Span<char> source
53
53
/// <param name="options">A bitwise combination of the enumeration values that specifies whether to trim results and include empty results.</param>
54
54
/// <param name="countExceedingBehaviour">The handling of the instances more than count.</param>
55
55
/// <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>
Copy file name to clipboardExpand all lines: src/Extensions/Span/String/SplitAny.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ public static partial class SpanExtensions
13
13
/// <param name="source">The <see cref="Span{T}"/> to be split.</param>
14
14
/// <param name="delimiters">A <see cref="ReadOnlySpan{T}"/>, that delimit the various sub-ReadOnlySpans in <paramref name="source"/>.</param>
15
15
/// <returns>An instance of the ref struct <see cref="SpanSplitAnyEnumerator{T}"/>, which works the same way as every <see cref="IEnumerator"/> does and can be used in a foreach construct.</returns>
/// <param name="delimiters">A <see cref="ReadOnlySpan{T}"/>, that delimit the various sub-ReadOnlySpans in <paramref name="source"/>.</param>
28
28
/// <param name="countExceedingBehaviour">The handling of the instances more than count.</param>
29
29
/// <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>
@@ -39,7 +39,7 @@ public static SpanSplitAnyWithCountEnumerator<T> SplitAny<T>(this Span<T> source
39
39
/// <param name="delimiters">A <see cref="ReadOnlySpan{Char}"/>, that delimit the various sub-ReadOnlySpans in <paramref name="source"/>.</param>
40
40
/// <param name="options">A bitwise combination of the enumeration values that specifies whether to trim results and include empty results.</param>
41
41
/// <returns>An instance of the ref struct <see cref="SpanSplitAnyStringSplitOptionsEnumerator"/>, which works the same way as every <see cref="IEnumerator"/> does and can be used in a foreach construct.</returns>
@@ -53,7 +53,7 @@ public static SpanSplitAnyStringSplitOptionsEnumerator SplitAny(this Span<char>
53
53
/// <param name="count">The maximum number of sub-ReadOnlySpans to split into.</param>
54
54
/// <param name="countExceedingBehaviour">The handling of the instances more than count.</param>
55
55
/// <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