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