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/Span/SpanExtensions.Linq.cs
-46Lines changed: 0 additions & 46 deletions
Original file line number
Diff line number
Diff line change
@@ -221,52 +221,6 @@ public static Span<T> Take<T>(this Span<T> source, int count)
221
221
returnsource[..count];
222
222
}
223
223
224
-
/// <summary>
225
-
/// Bypasses elements in <paramref name="source"/> as long as a <paramref name="condition"/> is true and then returns the remaining elements. The element's index is used in the logic of the predicate function.
226
-
/// </summary>
227
-
/// <typeparam name="T">The type of elements in the <see cref="ReadOnlySpan{T}"/>.</typeparam>
228
-
/// <param name="source">The <see cref="ReadOnlySpan{T}"/> to operate on.</param>
229
-
/// <param name="condition">A function to test each element for a condition.</param>
230
-
/// <returns>A <see cref="ReadOnlySpan{T}"/> that contains the elements from <paramref name="source"/> starting at the first element in the linear series that does not pass the specified <paramref name="condition" />.</returns>
231
-
/// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="condition"/> is null.</exception>
/// Returns elements from <paramref name="source"/> as long as a specified <paramref name="condition"/> is true, and then skips the remaining elements.
249
-
/// </summary>
250
-
/// <typeparam name="T">The type of elements in the <see cref="ReadOnlySpan{T}"/>.</typeparam>
251
-
/// <param name="source">The <see cref="ReadOnlySpan{T}"/> to operate on.</param>
252
-
/// <param name="condition">A function to test each element for a condition.</param>
253
-
/// <returns>A <see cref="ReadOnlySpan{T}"/> that contains elements from <paramref name="source"/> that occur before the element at which the <paramref name="condition"/> no longer passes.</returns>
254
-
/// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="condition"/> is null.</exception>
/// Returns a new <see cref="Span{T}"/> that contains the elements from source with the last <paramref name="count"/> elements of the source collection omitted.
0 commit comments