5 references to LastIndexOf
System.Collections.Immutable (5)
System\Collections\Immutable\ImmutableList_1.Builder.cs (4)
598return _root.LastIndexOf(item, this.Count - 1, this.Count, EqualityComparer<T>.Default); 624return _root.LastIndexOf(item, startIndex, startIndex + 1, EqualityComparer<T>.Default); 645_root.LastIndexOf(item, startIndex, count, EqualityComparer<T>.Default); 666_root.LastIndexOf(item, startIndex, count, equalityComparer);
System\Collections\Immutable\ImmutableList_1.cs (1)
777public int LastIndexOf(T item, int index, int count, IEqualityComparer<T>? equalityComparer) => _root.LastIndexOf(item, index, count, equalityComparer);