1 instantiation of FrozenHashTable
System.Collections.Immutable (1)
System\Collections\Frozen\FrozenHashTable.cs (1)
116return new FrozenHashTable(hashtableHashcodes, hashtableBuckets, fastModMultiplier);
13 references to FrozenHashTable
System.Collections.Immutable (13)
System\Collections\Frozen\FrozenHashTable.cs (1)
47public static FrozenHashTable Create(Span<int> hashCodes, bool hashCodesAreUnique = false)
System\Collections\Frozen\Int32\Int32FrozenDictionary.cs (2)
18private readonly FrozenHashTable _hashTable; 38_hashTable = FrozenHashTable.Create(hashCodes, hashCodesAreUnique: true);
System\Collections\Frozen\Int32\Int32FrozenSet.cs (2)
17private readonly FrozenHashTable _hashTable; 28_hashTable = FrozenHashTable.Create(new Span<int>(entries, 0, count), hashCodesAreUnique: true);
System\Collections\Frozen\ItemsFrozenSet.cs (2)
14private protected readonly FrozenHashTable _hashTable; 33_hashTable = FrozenHashTable.Create(hashCodes, keysAreHashCodes);
System\Collections\Frozen\KeysAndValuesFrozenDictionary.cs (2)
14private protected readonly FrozenHashTable _hashTable; 35_hashTable = FrozenHashTable.Create(hashCodes, keysAreHashCodes);
System\Collections\Frozen\String\OrdinalStringFrozenDictionary.cs (2)
14private readonly FrozenHashTable _hashTable; 50_hashTable = FrozenHashTable.Create(hashCodes);
System\Collections\Frozen\String\OrdinalStringFrozenSet.cs (2)
13private readonly FrozenHashTable _hashTable; 41_hashTable = FrozenHashTable.Create(hashCodes);