4 references to FindIndex
System.Collections.Immutable (4)
System\Collections\Immutable\ImmutableList_1.Builder.cs (1)
439public int FindIndex(int startIndex, int count, Predicate<T> match) => _root.FindIndex(startIndex, count, match);
System\Collections\Immutable\ImmutableList_1.cs (1)
667public int FindIndex(int startIndex, int count, Predicate<T> match) => _root.FindIndex(startIndex, count, match);
System\Collections\Immutable\ImmutableList_1.Node.cs (2)
1085return this.FindIndex(0, _count, match); 1105return this.FindIndex(startIndex, this.Count - startIndex, match);