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

◆ cmpBoolBoolO()

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

Definition at line 257 of file LogicalExpr.cs.

258 {
259 double n = NumberFunctions.Number((bool)val1);
260 double n2 = NumberFunctions.Number((bool)val2);
261 return cmpNumberNumberO(op, n, n2);
262 }
static bool cmpNumberNumberO(Operator.Op op, double n1, double n2)

References MS.Internal.Xml.XPath.LogicalExpr.cmpNumberNumberO(), and MS.Internal.Xml.XPath.NumberFunctions.Number().