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
/// Find the index of a specific item within the collection.
48
25
/// </summary>
@@ -74,29 +51,6 @@ public static int IndexOf<T>(this IEnumerable<T> enumerable, T item)
74
51
return-1;
75
52
}
76
53
77
-
/// <summary>
78
-
/// Find the index for the first occurrence of an item within the collection as matched through the specified predicate.
79
-
/// </summary>
80
-
/// <typeparam name="T">The type of object contained in this collection.</typeparam>
81
-
/// <param name="enumerable">The collection in which to look for the item.</param>
82
-
/// <param name="predicate">The predicate used to evaluate each item and see if it matches.
83
-
/// The item currently evaluated of type <typeparamref name="T"/> is provided as an input parameter.
84
-
/// The resulting value should be a <see cref="bool"/> which is <see langword="true"/> if this is the item to match, otherwise <see langword="false"/>.</param>
85
-
/// <returns>The index of the first item to match through <paramref name="predicate"/> in the collection or -1 when no match is not found.</returns>
0 commit comments