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

◆ And()

void System.Xml.Schema.BitSet.And ( BitSet other)
inline

Definition at line 94 of file BitSet.cs.

95 {
96 if (this != other)
97 {
98 int num = _bits.Length;
99 int num2 = other._bits.Length;
100 int i = ((num > num2) ? num2 : num);
101 int num3 = i;
102 while (num3-- > 0)
103 {
104 _bits[num3] &= other._bits[num3];
105 }
106 for (; i < num; i++)
107 {
108 _bits[i] = 0u;
109 }
110 }
111 }

References System.Xml.Schema.BitSet._bits, System.Xml.Dictionary, and System.other.