1 write to _hashTable
System.Collections.Immutable (1)
System\Collections\Frozen\Int32\Int32FrozenDictionary.cs (1)
38_hashTable = FrozenHashTable.Create(hashCodes, hashCodesAreUnique: true);
7 references to _hashTable
System.Collections.Immutable (7)
System\Collections\Frozen\Int32\Int32FrozenDictionary.AlternateLookup.cs (2)
18_hashTable.FindMatchingEntries(comparer.GetHashCode(key), out int index, out int endIndex); 20int[] hashCodes = _hashTable.HashCodes;
System\Collections\Frozen\Int32\Int32FrozenDictionary.cs (5)
51private protected override int[] KeysCore => _hashTable.HashCodes; 57private protected override Enumerator GetEnumeratorCore() => new Enumerator(_hashTable.HashCodes, _values); 60private protected override int CountCore => _hashTable.Count; 66_hashTable.FindMatchingEntries(key, out int index, out int endIndex); 68int[] hashCodes = _hashTable.HashCodes;