4 references to FindLastIndex
System.Collections.Immutable (4)
System\Collections\Immutable\ImmutableList_1.Builder.cs (1)
512public int FindLastIndex(int startIndex, int count, Predicate<T> match) => _root.FindLastIndex(startIndex, count, match);
System\Collections\Immutable\ImmutableList_1.cs (1)
738public int FindLastIndex(int startIndex, int count, Predicate<T> match) => _root.FindLastIndex(startIndex, count, match);
System\Collections\Immutable\ImmutableList_1.Node.cs (2)
1212return this.IsEmpty ? -1 : this.FindLastIndex(this.Count - 1, this.Count, match); 1234return this.IsEmpty ? -1 : this.FindLastIndex(startIndex, startIndex + 1, match);