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