src\Dependencies\Collections\Segmented\SegmentedArray.cs (3)
268return LastIndexOf(array, value, array.Length - 1, array.Length, comparer: null);
273return LastIndexOf(array, value, startIndex, array.Length == 0 ? 0 : startIndex + 1, comparer: null);
278return LastIndexOf(array, value, startIndex, count, comparer: null);