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

◆ IsInteger()

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

Definition at line 64 of file ExpressionNode.cs.

65 {
66 if (type != StorageType.Int16 && type != StorageType.Int32 && type != StorageType.Int64 && type != StorageType.UInt16 && type != StorageType.UInt32 && type != StorageType.UInt64 && type != StorageType.SByte)
67 {
68 return type == StorageType.Byte;
69 }
70 return true;
71 }

References System.type.

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