2 writes to _value
Microsoft.CodeAnalysis.Collections.Package (2)
SegmentedHashSet`1.cs (2)
331entry._value = default!; 1109entry._value = value;
14 references to _value
Microsoft.CodeAnalysis.Collections.Package (14)
SegmentedHashSet`1.cs (14)
182AddIfNotPresent(entry._value, out _); 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))) 403actualValue = _entries[index]._value; 825array[arrayIndex++] = entry._value; 847var value = entry._value; 1044if (entry._hashCode == hashCode && EqualityComparer<T>.Default.Equals(entry._value, value)) 1068if (entry._hashCode == hashCode && comparer!.Equals(entry._value, value)) 1153var item = entry._value; 1199Remove(entry._value); 1284Remove(_entries[i]._value); 1415_current = entry._value;