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
{{ message }}
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
Adding Span LastIndexOfAny APIs and tests (#25848)
* Adding LastIndexOfAny APIs and tests.
* Adding ReadOnlySpan LastIndexOfAny tests.
* Remove service property from test project
* Remove service property from performance test project
/// Searches for the last index of any of the specified values similar to calling LastIndexOf several times with the logical OR operator. If not found, returns -1.
245
+
/// </summary>
246
+
/// <param name="span">The span to search.</param>
247
+
/// <param name="value0">One of the values to search for.</param>
248
+
/// <param name="value1">One of the values to search for.</param>
/// Searches for the last index of any of the specified values similar to calling LastIndexOf several times with the logical OR operator. If not found, returns -1.
264
+
/// </summary>
265
+
/// <param name="span">The span to search.</param>
266
+
/// <param name="value0">One of the values to search for.</param>
267
+
/// <param name="value1">One of the values to search for.</param>
268
+
/// <param name="value2">One of the values to search for.</param>
/// Searches for the last index of any of the specified values similar to calling LastIndexOf several times with the logical OR operator. If not found, returns -1.
285
+
/// </summary>
286
+
/// <param name="span">The span to search.</param>
287
+
/// <param name="values">The set of values to search for.</param>
/// Searches for the last index of any of the specified values similar to calling LastIndexOf several times with the logical OR operator. If not found, returns -1.
303
+
/// </summary>
304
+
/// <param name="span">The span to search.</param>
305
+
/// <param name="value0">One of the values to search for.</param>
306
+
/// <param name="value1">One of the values to search for.</param>
/// Searches for the last index of any of the specified values similar to calling LastIndexOf several times with the logical OR operator. If not found, returns -1.
322
+
/// </summary>
323
+
/// <param name="span">The span to search.</param>
324
+
/// <param name="value0">One of the values to search for.</param>
325
+
/// <param name="value1">One of the values to search for.</param>
326
+
/// <param name="value2">One of the values to search for.</param>
/// Searches for the last index of any of the specified values similar to calling LastIndexOf several times with the logical OR operator. If not found, returns -1.
343
+
/// </summary>
344
+
/// <param name="span">The span to search.</param>
345
+
/// <param name="values">The set of values to search for.</param>
0 commit comments