1 write to _hashCode
Microsoft.CodeAnalysis.CodeStyle (1)
SegmentedHashSet`1.cs (1)
1089
entry.
_hashCode
= hashCode;
9 references to _hashCode
Microsoft.CodeAnalysis.CodeStyle (9)
SegmentedHashSet`1.cs (9)
225
if (entry.
_hashCode
== hashCode && EqualityComparer<T>.Default.Equals(entry._value, item))
248
if (entry.
_hashCode
== hashCode && defaultComparer.Equals(entry._value, item))
270
if (entry.
_hashCode
== hashCode && comparer.Equals(entry._value, item))
315
if (entry.
_hashCode
== hashCode && (_comparer?.Equals(entry._value, item) ?? EqualityComparer<T>.Default.Equals(entry._value, item)))
897
ref var bucket = ref GetBucketRef(entry.
_hashCode
);
929
var hashCode = oldEntries[i].
_hashCode
; // At this point, we know we have entries.
1003
if (entry.
_hashCode
== hashCode && EqualityComparer<T>.Default.Equals(entry._value, value))
1026
if (entry.
_hashCode
== hashCode && defaultComparer.Equals(entry._value, value))
1050
if (entry.
_hashCode
== hashCode && comparer.Equals(entry._value, value))