2 overrides of FindLastIndexImpl
Microsoft.CodeAnalysis.UnitTests (2)
Collections\ImmutableSegmentedListBuilderTest.cs (1)
503
private protected override int
FindLastIndexImpl
<T>(ImmutableSegmentedList<T> list, int startIndex, int count, Predicate<T> match)
Collections\ImmutableSegmentedListTest.cs (1)
928
private protected override int
FindLastIndexImpl
<T>(ImmutableSegmentedList<T> list, int startIndex, int count, Predicate<T> match)
2 references to FindLastIndexImpl
Microsoft.CodeAnalysis.UnitTests (2)
Collections\ImmutableListTestBase.cs (2)
226
Assert.Equal(-1,
FindLastIndexImpl
(ImmutableSegmentedList<int>.Empty, 0, 0, n => true));
248
int actual =
FindLastIndexImpl
(list, idx, count, match);