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

◆ cmpRtfBoolE()

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

Definition at line 285 of file LogicalExpr.cs.

286 {
287 bool n = BooleanFunctions.toBoolean(Rtf(val1));
288 bool n2 = (bool)val2;
289 return cmpBoolBoolE(op, n, n2);
290 }
static bool cmpBoolBoolE(Operator.Op op, bool n1, bool n2)

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