2 overrides of FindLastIndexImpl
Microsoft.CodeAnalysis.UnitTests (2)
Collections\ImmutableSegmentedListBuilderTest.cs (1)
497
private protected override int
FindLastIndexImpl
<T>(ImmutableSegmentedList<T> list, Predicate<T> match)
Collections\ImmutableSegmentedListTest.cs (1)
922
private protected override int
FindLastIndexImpl
<T>(ImmutableSegmentedList<T> list, Predicate<T> match)
3 references to FindLastIndexImpl
Microsoft.CodeAnalysis.UnitTests (3)
Collections\ImmutableListTestBase.cs (3)
224
Assert.Equal(-1,
FindLastIndexImpl
(ImmutableSegmentedList<int>.Empty, n => true));
231
Assert.Equal(-1,
FindLastIndexImpl
(list, n => n == 6));
265
actual =
FindLastIndexImpl
(list, match);