1 write to _hashTable
System.Collections.Immutable (1)
System\Collections\Frozen\Int32\Int32FrozenDictionary.cs (1)
38_hashTable = FrozenHashTable.Create(hashCodes, hashCodesAreUnique: true);
5 references to _hashTable
System.Collections.Immutable (5)
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;