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

◆ IsNumericSql()

static bool System.Data.ExpressionNode.IsNumericSql ( StorageType type)
inlinestaticpackageinherited

Definition at line 127 of file ExpressionNode.cs.

128 {
129 if (!IsFloatSql(type))
130 {
131 return IsIntegerSql(type);
132 }
133 return true;
134 }
static bool IsIntegerSql(StorageType type)
static bool IsFloatSql(StorageType type)

References System.Data.ExpressionNode.IsFloatSql(), System.Data.ExpressionNode.IsIntegerSql(), and System.type.

Referenced by System.Data.UnaryNode.EvalUnaryOp(), and System.Data.BinaryNode.ResultSqlType().