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

◆ IsUnsigned()

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

Definition at line 100 of file ExpressionNode.cs.

101 {
102 if (type != StorageType.UInt16 && type != StorageType.UInt32 && type != StorageType.UInt64)
103 {
104 return type == StorageType.Byte;
105 }
106 return true;
107 }

References System.type.

Referenced by System.Data.BinaryNode.IsMixed(), and System.Data.BinaryNode.ResultType().