5 references to SegmentedDictionary
Microsoft.CodeAnalysis (5)
src\Dependencies\Collections\ImmutableSegmentedDictionary`2.cs (1)
73public static readonly ImmutableSegmentedDictionary<TKey, TValue> Empty = new(new SegmentedDictionary<TKey, TValue>());
src\Dependencies\Collections\SegmentedDictionary`2.cs (3)
393return LazyInitializer.EnsureInitialized(ref s_emptyEnumerator, static () => new Enumerator(new SegmentedDictionary<TKey, TValue>(), Enumerator.KeyValuePair))!; 1362return LazyInitializer.EnsureInitialized(ref s_emptyEnumerator, static () => new Enumerator(new SegmentedDictionary<TKey, TValue>()))!; 1570return LazyInitializer.EnsureInitialized(ref s_emptyEnumerator, static () => new Enumerator(new SegmentedDictionary<TKey, TValue>()))!;
Syntax\SyntaxNodeExtensions_Tracking.cs (1)
202var map = new SegmentedDictionary<SyntaxAnnotation, List<SyntaxNode>>();