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