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