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