2 overrides of FindIndexImpl
Microsoft.CodeAnalysis.UnitTests (2)
Collections\ImmutableSegmentedListBuilderTest.cs (1)
487
private protected override int
FindIndexImpl
<T>(ImmutableSegmentedList<T> list, int startIndex, Predicate<T> match)
Collections\ImmutableSegmentedListTest.cs (1)
912
private protected override int
FindIndexImpl
<T>(ImmutableSegmentedList<T> list, int startIndex, Predicate<T> match)
2 references to FindIndexImpl
Microsoft.CodeAnalysis.UnitTests (2)
Collections\ImmutableListTestBase.cs (2)
171
Assert.Equal(-1,
FindIndexImpl
(ImmutableSegmentedList<int>.Empty, 0, n => true));
203
actual =
FindIndexImpl
(list, idx, match);