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

◆ cmpBoolStringE()

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

Definition at line 278 of file LogicalExpr.cs.

279 {
280 bool n = (bool)val1;
281 bool n2 = BooleanFunctions.toBoolean((string)val2);
282 return cmpBoolBoolE(op, n, n2);
283 }
static bool cmpBoolBoolE(Operator.Op op, bool n1, bool n2)

References MS.Internal.Xml.XPath.LogicalExpr.cmpBoolBoolE(), and MS.Internal.Xml.XPath.BooleanFunctions.toBoolean().