2 writes to _value
Microsoft.CodeAnalysis.Threading.Package (2)
src\Dependencies\Collections\Segmented\SegmentedHashSet`1.cs (2)
333entry._value = default!; 1111entry._value = value;
14 references to _value
Microsoft.CodeAnalysis.Threading.Package (14)
src\Dependencies\Collections\Segmented\SegmentedHashSet`1.cs (14)
184AddIfNotPresent(entry._value, out _); 242if (entry._hashCode == hashCode && EqualityComparer<T>.Default.Equals(entry._value, item)) 264if (entry._hashCode == hashCode && comparer!.Equals(entry._value, item)) 315if (entry._hashCode == hashCode && (comparer?.Equals(entry._value, item) ?? EqualityComparer<T>.Default.Equals(entry._value, item))) 405actualValue = _entries[index]._value; 827array[arrayIndex++] = entry._value; 849var value = entry._value; 1046if (entry._hashCode == hashCode && EqualityComparer<T>.Default.Equals(entry._value, value)) 1070if (entry._hashCode == hashCode && comparer!.Equals(entry._value, value)) 1155var item = entry._value; 1201Remove(entry._value); 1286Remove(_entries[i]._value); 1417_current = entry._value;