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