Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Intersects()

bool System.Xml.Schema.BitSet.Intersects ( BitSet other)
inline

Definition at line 190 of file BitSet.cs.

191 {
192 int num = Math.Min(_bits.Length, other._bits.Length);
193 while (--num >= 0)
194 {
195 if ((_bits[num] & other._bits[num]) != 0)
196 {
197 return true;
198 }
199 }
200 return false;
201 }

References System.Xml.Schema.BitSet._bits, System.Math.Min(), and System.other.

Referenced by System.Xml.Schema.ParticleContentValidator.GetApplicableMinMaxFollowPos().