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