2 overrides of FindImpl
Microsoft.CodeAnalysis.UnitTests (2)
Collections\ImmutableSegmentedListBuilderTest.cs (1)
477private protected override T? FindImpl<T>(ImmutableSegmentedList<T> list, Predicate<T> match)
Collections\ImmutableSegmentedListTest.cs (1)
902private protected override T? FindImpl<T>(ImmutableSegmentedList<T> list, Predicate<T> match)
2 references to FindImpl
Microsoft.CodeAnalysis.UnitTests (2)
Collections\ImmutableListTestBase.cs (2)
154Assert.Equal(0, FindImpl(ImmutableSegmentedList<int>.Empty, n => true)); 156Assert.Equal(3, FindImpl(list, n => (n % 2) == 1));