1 write to _hashTable
System.Collections.Immutable (1)
System\Collections\Frozen\Int32\Int32FrozenSet.cs (1)
28_hashTable = FrozenHashTable.Create(new Span<int>(entries, 0, count), hashCodesAreUnique: true);
7 references to _hashTable
System.Collections.Immutable (7)
System\Collections\Frozen\Int32\Int32FrozenSet.AlternateLookup.cs (2)
17_hashTable.FindMatchingEntries(comparer.GetHashCode(item), out int index, out int endIndex); 19int[] hashCodes = _hashTable.HashCodes;
System\Collections\Frozen\Int32\Int32FrozenSet.cs (5)
34private protected override int[] ItemsCore => _hashTable.HashCodes; 37private protected override Enumerator GetEnumeratorCore() => new Enumerator(_hashTable.HashCodes); 40private protected override int CountCore => _hashTable.Count; 45_hashTable.FindMatchingEntries(item, out int index, out int endIndex); 47int[] hashCodes = _hashTable.HashCodes;