1 write to _hashCode
Microsoft.CodeAnalysis.Collections.Package (1)
SegmentedHashSet`1.cs (1)
1107
entry.
_hashCode
= hashCode;
7 references to _hashCode
Microsoft.CodeAnalysis.Collections.Package (7)
SegmentedHashSet`1.cs (7)
240
if (entry.
_hashCode
== hashCode && EqualityComparer<T>.Default.Equals(entry._value, item))
262
if (entry.
_hashCode
== hashCode && comparer!.Equals(entry._value, item))
313
if (entry.
_hashCode
== hashCode && (comparer?.Equals(entry._value, item) ?? EqualityComparer<T>.Default.Equals(entry._value, item)))
915
ref var bucket = ref GetBucketRef(entry.
_hashCode
);
969
var hashCode = oldEntries[i].
_hashCode
; // At this point, we know we have entries.
1044
if (entry.
_hashCode
== hashCode && EqualityComparer<T>.Default.Equals(entry._value, value))
1068
if (entry.
_hashCode
== hashCode && comparer!.Equals(entry._value, value))