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

◆ IsFloatSql()

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

Definition at line 145 of file ExpressionNode.cs.

146 {
147 if (type != StorageType.Single && type != StorageType.Double && type != StorageType.Decimal && type != StorageType.SqlDouble && type != StorageType.SqlDecimal && type != StorageType.SqlMoney)
148 {
149 return type == StorageType.SqlSingle;
150 }
151 return true;
152 }

References System.type.

Referenced by System.Data.FunctionNode.EvalFunction(), System.Data.ExpressionNode.IsNumericSql(), and System.Data.ExpressionNode.IsSignedSql().