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

◆ IsNumeric()

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

Definition at line 118 of file ExpressionNode.cs.

119 {
120 if (!IsFloat(type))
121 {
122 return IsInteger(type);
123 }
124 return true;
125 }
static bool IsInteger(StorageType type)
static bool IsFloat(StorageType type)

References System.Data.ExpressionNode.IsFloat(), System.Data.ExpressionNode.IsInteger(), and System.type.

Referenced by System.Data.FunctionNode.EvalFunction(), and System.Data.BinaryNode.ResultType().