5 references to LastIndexOf
System.Collections.Immutable (5)
System\Collections\Immutable\ImmutableList_1.Builder.cs (4)
609return _root.LastIndexOf(item, this.Count - 1, this.Count, EqualityComparer<T>.Default); 635return _root.LastIndexOf(item, startIndex, startIndex + 1, EqualityComparer<T>.Default); 656_root.LastIndexOf(item, startIndex, count, EqualityComparer<T>.Default); 677_root.LastIndexOf(item, startIndex, count, equalityComparer);
System\Collections\Immutable\ImmutableList_1.cs (1)
786public int LastIndexOf(T item, int index, int count, IEqualityComparer<T>? equalityComparer) => _root.LastIndexOf(item, index, count, equalityComparer);