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

◆ IsSignedSql()

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

Definition at line 91 of file ExpressionNode.cs.

92 {
93 if (type != StorageType.Int16 && type != StorageType.Int32 && type != StorageType.Int64 && type != StorageType.SByte && type != StorageType.SqlInt64 && type != StorageType.SqlInt32 && type != StorageType.SqlInt16)
94 {
95 return IsFloatSql(type);
96 }
97 return true;
98 }
static bool IsFloatSql(StorageType type)

References System.Data.ExpressionNode.IsFloatSql(), and System.type.

Referenced by System.Data.BinaryNode.IsMixedSql().