3 overrides of CheckLengthQuick
System.Collections.Immutable (3)
System\Collections\Frozen\String\OrdinalStringFrozenSet_Full.cs (1)
29
private protected override bool
CheckLengthQuick
(uint length) => (_lengthFilter & (1UL << (int)(length % 64))) > 0;
System\Collections\Frozen\String\OrdinalStringFrozenSet_FullCaseInsensitive.cs (1)
31
private protected override bool
CheckLengthQuick
(uint length) => (_lengthFilter & (1UL << (int)(length % 64))) > 0;
System\Collections\Frozen\String\OrdinalStringFrozenSet_FullCaseInsensitiveAscii.cs (1)
31
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\OrdinalStringFrozenSet.AlternateLookup.cs (1)
26
if (
CheckLengthQuick
((uint)item.Length))
System\Collections\Frozen\String\OrdinalStringFrozenSet.cs (1)
77
if (
CheckLengthQuick
((uint)item.Length))