2 overrides of FindIndexImpl
Microsoft.CodeAnalysis.UnitTests (2)
Collections\ImmutableSegmentedListBuilderTest.cs (1)
484private protected override int FindIndexImpl<T>(ImmutableSegmentedList<T> list, Predicate<T> match)
Collections\ImmutableSegmentedListTest.cs (1)
909private protected override int FindIndexImpl<T>(ImmutableSegmentedList<T> list, Predicate<T> match)
3 references to FindIndexImpl
Microsoft.CodeAnalysis.UnitTests (3)
Collections\ImmutableListTestBase.cs (3)
170Assert.Equal(-1, FindIndexImpl(ImmutableSegmentedList<int>.Empty, n => true)); 177Assert.Equal(-1, FindIndexImpl(list, n => n == 6)); 211actual = FindIndexImpl(list, match);