1 write to _comparer
System.Linq (1)
System\Linq\Lookup.cs (1)
128
_comparer
= comparer ?? EqualityComparer<TKey>.Default;
2 references to _comparer
System.Linq (2)
System\Linq\Lookup.cs (2)
201
return (key is null) ? 0 :
_comparer
.GetHashCode(key) & 0x7FFFFFFF;
209
if (g._hashCode == hashCode &&
_comparer
.Equals(g._key, key))