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

◆ cmpRtfQueryE()

static bool MS.Internal.Xml.XPath.LogicalExpr.cmpRtfQueryE ( Operator::Op op,
object val1,
object val2 )
inlinestaticprivate

Definition at line 203 of file LogicalExpr.cs.

204 {
205 string n = Rtf(val1);
206 NodeSet nodeSet = new NodeSet(val2);
207 while (nodeSet.MoveNext())
208 {
209 if (cmpStringStringE(op, n, nodeSet.Value))
210 {
211 return true;
212 }
213 }
214 return false;
215 }
static bool cmpStringStringE(Operator.Op op, string n1, string n2)

References MS.Internal.Xml.XPath.LogicalExpr.cmpStringStringE(), MS.Internal.Xml.XPath.LogicalExpr.NodeSet.MoveNext(), System.Xml.XPath.NodeSet, System.Xml.Xsl.Rtf, and MS.Internal.Xml.XPath.LogicalExpr.NodeSet.Value.