5 references to LastIndexOf
System.Collections.Immutable (5)
System\Collections\Immutable\ImmutableList_1.Builder.cs (4)
594return _root.LastIndexOf(item, this.Count - 1, this.Count, EqualityComparer<T>.Default); 620return _root.LastIndexOf(item, startIndex, startIndex + 1, EqualityComparer<T>.Default); 641_root.LastIndexOf(item, startIndex, count, EqualityComparer<T>.Default); 662_root.LastIndexOf(item, startIndex, count, equalityComparer);
System\Collections\Immutable\ImmutableList_1.cs (1)
779public int LastIndexOf(T item, int index, int count, IEqualityComparer<T>? equalityComparer) => _root.LastIndexOf(item, index, count, equalityComparer);