2 overrides of FindAllImpl
Microsoft.CodeAnalysis.UnitTests (2)
Collections\ImmutableSegmentedListBuilderTest.cs (1)
481
private protected override ImmutableSegmentedList<T>
FindAllImpl
<T>(ImmutableSegmentedList<T> list, Predicate<T> match)
Collections\ImmutableSegmentedListTest.cs (1)
906
private protected override ImmutableSegmentedList<T>
FindAllImpl
<T>(ImmutableSegmentedList<T> list, Predicate<T> match)
2 references to FindAllImpl
Microsoft.CodeAnalysis.UnitTests (2)
Collections\ImmutableListTestBase.cs (2)
144
Assert.True(
FindAllImpl
(ImmutableSegmentedList<int>.Empty, n => true).IsEmpty);
146
var actual =
FindAllImpl
(list, n => n % 2 == 1);