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