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

◆ IsSigned()

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

Definition at line 82 of file ExpressionNode.cs.

83 {
84 if (type != StorageType.Int16 && type != StorageType.Int32 && type != StorageType.Int64 && type != StorageType.SByte)
85 {
86 return IsFloat(type);
87 }
88 return true;
89 }
static bool IsFloat(StorageType type)

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

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