4 references to IndexOf
Microsoft.CodeAnalysis.Workspaces (4)
src\Dependencies\Collections\SegmentedArray.cs (3)
201
return
IndexOf
(array, value, 0, array.Length, comparer: null);
206
return
IndexOf
(array, value, startIndex, array.Length - startIndex, comparer: null);
211
return
IndexOf
(array, value, startIndex, count, comparer: null);
src\Dependencies\Collections\SegmentedList`1.cs (1)
805
return SegmentedArray.
IndexOf
(_items, item, index, count, comparer);