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

◆ cmpQueryBoolE()

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

Definition at line 231 of file LogicalExpr.cs.

232 {
233 bool n = new NodeSet(val1).MoveNext();
234 bool n2 = (bool)val2;
235 return cmpBoolBoolE(op, n, n2);
236 }
static bool cmpBoolBoolE(Operator.Op op, bool n1, bool n2)

References MS.Internal.Xml.XPath.LogicalExpr.cmpBoolBoolE(), and System.Xml.XPath.NodeSet.