2 overrides of ConvertAllImpl
Microsoft.CodeAnalysis.UnitTests (2)
Collections\ImmutableSegmentedListBuilderTest.cs (1)
456
private protected override ImmutableSegmentedList<TOutput>
ConvertAllImpl
<T, TOutput>(ImmutableSegmentedList<T> list, Converter<T, TOutput> converter)
Collections\ImmutableSegmentedListTest.cs (1)
881
private protected override ImmutableSegmentedList<TOutput>
ConvertAllImpl
<T, TOutput>(ImmutableSegmentedList<T> list, Converter<T, TOutput> converter)
2 references to ConvertAllImpl
Microsoft.CodeAnalysis.UnitTests (2)
Collections\ImmutableListTestBase.cs (2)
332
Assert.True(
ConvertAllImpl
<int, float>(ImmutableSegmentedList<int>.Empty, n => n).IsEmpty);
336
var actual =
ConvertAllImpl
(list, converter);