2 overrides of ExistsImpl
Microsoft.CodeAnalysis.UnitTests (2)
Collections\ImmutableSegmentedListBuilderTest.cs (1)
474
private protected override bool
ExistsImpl
<T>(ImmutableSegmentedList<T> list, Predicate<T> match)
Collections\ImmutableSegmentedListTest.cs (1)
899
private protected override bool
ExistsImpl
<T>(ImmutableSegmentedList<T> list, Predicate<T> match)
3 references to ExistsImpl
Microsoft.CodeAnalysis.UnitTests (3)
Collections\ImmutableListTestBase.cs (3)
134
Assert.False(
ExistsImpl
(ImmutableSegmentedList<int>.Empty, n => true));
137
Assert.True(
ExistsImpl
(list, n => n == 3));
138
Assert.False(
ExistsImpl
(list, n => n == 8));