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

◆ IsIntegerSql()

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

Definition at line 73 of file ExpressionNode.cs.

74 {
75 if (type != StorageType.Int16 && type != StorageType.Int32 && type != StorageType.Int64 && type != StorageType.UInt16 && type != StorageType.UInt32 && type != StorageType.UInt64 && type != StorageType.SByte && type != StorageType.Byte && type != StorageType.SqlInt64 && type != StorageType.SqlInt32 && type != StorageType.SqlInt16)
76 {
77 return type == StorageType.SqlByte;
78 }
79 return true;
80 }

References System.type.

Referenced by System.Data.BinaryNode.EvalBinaryOp(), System.Data.FunctionNode.EvalFunction(), System.Data.ExpressionNode.IsNumericSql(), and System.Data.BinaryNode.ResultSqlType().