2 instantiations of SmallDictionary
Microsoft.CodeAnalysis.Features (1)
Diagnostics\Service\DiagnosticAnalyzerService_CompilationWithAnalyzersPair.cs (1)
58project.State, static _ => new(ChecksumAndAnalyzersEqualityComparer.Instance));
Microsoft.CodeAnalysis.Workspaces (1)
src\Compilers\Core\Portable\Collections\SmallDictionary.cs (1)
42public static readonly SmallDictionary<K, V> Empty = new SmallDictionary<K, V>(null!);
11 references to SmallDictionary
Microsoft.CodeAnalysis.Features (2)
Diagnostics\Service\DiagnosticAnalyzerService_CompilationWithAnalyzersPair.cs (2)
34SmallDictionary< 57var map = s_projectToCompilationWithAnalyzers.GetValue(
Microsoft.CodeAnalysis.Workspaces (9)
src\Compilers\Core\Portable\Collections\SmallDictionary.cs (9)
42public static readonly SmallDictionary<K, V> Empty = new SmallDictionary<K, V>(null!); 51public SmallDictionary(SmallDictionary<K, V> other, IEqualityComparer<K> comparer) 508private readonly SmallDictionary<K, V> _dict; 510public KeyCollection(SmallDictionary<K, V> dict) 521public Enumerator(SmallDictionary<K, V> dict) 623private readonly SmallDictionary<K, V> _dict; 625public ValueCollection(SmallDictionary<K, V> dict) 636public Enumerator(SmallDictionary<K, V> dict) 742public Enumerator(SmallDictionary<K, V> dict)