15 references to SortedSet
ILCompiler.Compiler (3)
Compiler\DependencyAnalysis\InterfaceDispatchCellInfoSectionNode.cs (1)
32foreach (InterfaceDispatchCellNode node in new SortedSet<InterfaceDispatchCellNode>(factory.MetadataManager.GetInterfaceDispatchCells(), new DispatchCellComparer()))
Compiler\UsageBasedTypeMapManager.cs (2)
113SortedSet<TypeDesc> emptyMapsToGenerate = new SortedSet<TypeDesc>(_requestedExternalTypeMaps, TypeSystemComparer.Instance); 132SortedSet<TypeDesc> emptyMapsToGenerate = new SortedSet<TypeDesc>(_requestedProxyTypeMaps, TypeSystemComparer.Instance);
Microsoft.AspNetCore.HttpLogging (1)
W3CLoggerOptions.cs (1)
128var clonedSet = new SortedSet<string>(options.AdditionalRequestHeaders, StringComparer.InvariantCultureIgnoreCase);
Microsoft.VisualStudio.TestPlatform.ObjectModel (1)
Nuget.Frameworks\NuGetFramework.cs (1)
487private static readonly SortedSet<string> PackagesBased = new(
NuGet.Commands (1)
RestoreCommand\Utility\MSBuildRestoreUtility.cs (1)
598var result = new SortedSet<string>(values, StringComparer.Ordinal);
NuGet.Frameworks (1)
NuGetFramework.cs (1)
488private static readonly SortedSet<string> PackagesBased = new SortedSet<string>(
NuGet.Packaging (1)
PackageCreation\Authoring\PackageBuilder.cs (1)
945foreach (IPackageFile file in new SortedSet<IPackageFile>(Files, new NormalizedPathComparer()))
NuGet.Resolver (1)
ResolverInputSort.cs (1)
39var dependencies = grouped.Select(group => new SortedSet<string>(
System.Collections (3)
System\Collections\Generic\SortedDictionary.cs (1)
886internal TreeSet(TreeSet<T> set, IComparer<T>? comparer) : base(set, comparer) { }
System\Collections\Generic\SortedSet.cs (2)
82public SortedSet(IEnumerable<T> collection) : this(collection, Comparer<T>.Default) { } 855SortedSet<T> dummy = new SortedSet<T>(asSorted, comparer);
System.Collections.Immutable (3)
System\Collections\Immutable\ImmutableSortedSet_1.cs (3)
421var otherSet = new SortedSet<T>(other, this.KeyComparer); 452var otherSet = new SortedSet<T>(other, this.KeyComparer); 529var otherSet = new SortedSet<T>(other, this.KeyComparer);