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