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

◆ IsFloat()

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

Definition at line 136 of file ExpressionNode.cs.

137 {
138 if (type != StorageType.Single && type != StorageType.Double)
139 {
140 return type == StorageType.Decimal;
141 }
142 return true;
143 }

References System.type.

Referenced by System.Data.ExpressionNode.IsNumeric(), and System.Data.ExpressionNode.IsSigned().