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