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