13 references to Empty
Microsoft.CodeAnalysis (1)
DiagnosticAnalyzer\AnalyzerExecutor.cs (1)
1268var diagnosticIds = ImmutableSortedSet<string>.Empty.WithComparer(StringComparer.OrdinalIgnoreCase);
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (1)
PDB\MethodDebugInfo.cs (1)
86return ImmutableSortedSet<int>.Empty;
System.Collections.Immutable (11)
System\Collections\Immutable\ImmutableSortedSet.cs (9)
20return ImmutableSortedSet<T>.Empty; 33return ImmutableSortedSet<T>.Empty.WithComparer(comparer); 44return ImmutableSortedSet<T>.Empty.Add(item); 56return ImmutableSortedSet<T>.Empty.WithComparer(comparer).Add(item); 67return ImmutableSortedSet<T>.Empty.Union(items); 79return ImmutableSortedSet<T>.Empty.WithComparer(comparer).Union(items); 102return ImmutableSortedSet<T>.Empty.Union(items); 128return ImmutableSortedSet<T>.Empty.WithComparer(comparer).Union(items); 168return ImmutableSortedSet<TSource>.Empty.WithComparer(comparer).Union(source);
System\Collections\Immutable\ImmutableSortedSet_1.cs (2)
81return _root.IsEmpty ? this : Empty.WithComparer(_comparer); 1028? ImmutableSortedSet<T>.Empty.WithComparer(comparer)