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