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);
20
int[] hashCodes =
_hashTable
.HashCodes;
System\Collections\Frozen\Int32\Int32FrozenDictionary.cs (5)
51
private protected override int[] KeysCore =>
_hashTable
.HashCodes;
57
private protected override Enumerator GetEnumeratorCore() => new Enumerator(
_hashTable
.HashCodes, _values);
60
private protected override int CountCore =>
_hashTable
.Count;
66
_hashTable
.FindMatchingEntries(key, out int index, out int endIndex);
68
int[] hashCodes =
_hashTable
.HashCodes;