3 writes to _comparer
Microsoft.AspNetCore.Http (3)
src\Shared\Dictionary\AdaptiveCapacityDictionary.cs (3)
65
_comparer
= comparer;
69
_comparer
= EqualityComparer<TKey>.Default;
93
_comparer
= dict.Comparer;
5 references to _comparer
Microsoft.AspNetCore.Http (5)
src\Shared\Dictionary\AdaptiveCapacityDictionary.cs (5)
82
_dictionaryStorage = new Dictionary<TKey, TValue>(capacity,
_comparer
);
147
public IEqualityComparer<TKey> Comparer =>
_comparer
;
519
_dictionaryStorage = new Dictionary<TKey, TValue>(capacity,
_comparer
);
563
if (
_comparer
.Equals(ArrayStorageSpan[i].Key, key))
583
if (
_comparer
.Equals(item.Key, key))