7 references to SortedSet
Microsoft.AspNetCore.HttpLogging (1)
W3CLoggerOptions.cs (1)
128
var clonedSet = new
SortedSet
<string>(options.AdditionalRequestHeaders, StringComparer.InvariantCultureIgnoreCase);
System.Collections (3)
System\Collections\Generic\SortedDictionary.cs (1)
888
internal TreeSet(TreeSet<T> set, IComparer<T>? comparer) :
base
(set, comparer) { }
System\Collections\Generic\SortedSet.cs (2)
82
public SortedSet(IEnumerable<T> collection) :
this
(collection, Comparer<T>.Default) { }
858
SortedSet<T> dummy = new
SortedSet
<T>(asSorted, comparer);
System.Collections.Immutable (3)
System\Collections\Immutable\ImmutableSortedSet_1.cs (3)
378
var otherSet = new
SortedSet
<T>(other, this.KeyComparer);
420
var otherSet = new
SortedSet
<T>(other, this.KeyComparer);
497
var otherSet = new
SortedSet
<T>(other, this.KeyComparer);