2 instantiations of Enumerator
Microsoft.CodeAnalysis (2)
src\Dependencies\Collections\SegmentedHashSet`1.cs (2)
364
public Enumerator GetEnumerator() =>
new
(this);
374
return LazyInitializer.EnsureInitialized(ref s_emptyEnumerator, static () => new
Enumerator
(new SegmentedHashSet<T>()))!;
2 references to Enumerator
Microsoft.CodeAnalysis (2)
src\Dependencies\Collections\ImmutableSegmentedHashSet`1+Enumerator.cs (1)
17
private SegmentedHashSet<T>.
Enumerator
_enumerator;
src\Dependencies\Collections\SegmentedHashSet`1.cs (1)
364
public
Enumerator
GetEnumerator() => new(this);