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