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

◆ cmpStringNumber()

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

Definition at line 335 of file LogicalExpr.cs.

336 {
337 double n = (double)val2;
338 double n2 = NumberFunctions.Number((string)val1);
339 return cmpNumberNumber(op, n2, n);
340 }
static bool cmpNumberNumber(Operator.Op op, double n1, double n2)

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