3 overrides of CheckLengthQuick
System.Collections.Immutable (3)
System\Collections\Frozen\String\OrdinalStringFrozenDictionary_Full.cs (1)
32
private protected override bool
CheckLengthQuick
(uint length) => (_lengthFilter & (1UL << (int)(length % 64))) > 0;
System\Collections\Frozen\String\OrdinalStringFrozenDictionary_FullCaseInsensitive.cs (1)
32
private protected override bool
CheckLengthQuick
(uint length) => (_lengthFilter & (1UL << (int)(length % 64))) > 0;
System\Collections\Frozen\String\OrdinalStringFrozenDictionary_FullCaseInsensitiveAscii.cs (1)
32
private protected override bool
CheckLengthQuick
(uint length) => (_lengthFilter & (1UL << (int)(length % 64))) > 0;
2 references to CheckLengthQuick
System.Collections.Immutable (2)
System\Collections\Frozen\String\OrdinalStringFrozenDictionary.AlternateLookup.cs (1)
27
if (
CheckLengthQuick
((uint)key.Length))
System\Collections\Frozen\String\OrdinalStringFrozenDictionary.cs (1)
87
if (
CheckLengthQuick
((uint)key.Length))