2 instantiations of Enumerator
Microsoft.CodeAnalysis.Workspaces (2)
src\Dependencies\Collections\Segmented\SegmentedList`1.cs (2)
734public Enumerator GetEnumerator() => new(this); 744return LazyInitializer.EnsureInitialized(ref s_emptyEnumerator, static () => new Enumerator(new SegmentedList<T>(0)))!;
7 references to Enumerator
Microsoft.CodeAnalysis.EditorFeatures (5)
Classification\TotalClassificationTaggerProvider.cs (2)
122using var syntacticEnumerator = syntacticSpans.GetEnumerator(); 123using var semanticEnumerator = semanticSpans.GetEnumerator();
Shared\Tagging\Utilities\TagSpanIntervalTree.cs (1)
192using var enumerator = tempList.GetEnumerator();
Tagging\AbstractAsynchronousTaggerProvider.TagSource_ProduceTags.cs (2)
655var latestEnumerator = latestSpans.GetEnumerator(); 656var previousEnumerator = previousSpans.GetEnumerator();
Microsoft.CodeAnalysis.Workspaces (2)
src\Dependencies\Collections\Segmented\ImmutableSegmentedList`1+Enumerator.cs (1)
17private SegmentedList<T>.Enumerator _enumerator;
src\Dependencies\Collections\Segmented\SegmentedList`1.cs (1)
734public Enumerator GetEnumerator() => new(this);