5 references to SegmentedList
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
Tagging\TagSpanIntervalTreeTests.cs (1)
27var tags = new SegmentedList<TagSpan<ITextMarkerTag>>(
Microsoft.CodeAnalysis.Features (1)
Completion\CompletionService.cs (1)
289var filterDataList = new SegmentedList<MatchResult>(
Microsoft.CodeAnalysis.Workspaces (3)
src\Dependencies\Collections\RoslynEnumerable.cs (1)
20return new SegmentedList<TSource>(source);
src\Dependencies\Collections\Segmented\ImmutableSegmentedList`1.cs (1)
176var list = new SegmentedList<T>(items);
src\Dependencies\Collections\Segmented\ImmutableSegmentedList`1+ValueBuilder.cs (1)
80_mutableList = new SegmentedList<T>(originalList._list);