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

◆ IsMixed()

bool System.Data.BinaryNode.IsMixed ( StorageType left,
StorageType right )
inlineprivateinherited

Definition at line 980 of file BinaryNode.cs.

981 {
982 if (!ExpressionNode.IsSigned(left) || !ExpressionNode.IsUnsigned(right))
983 {
984 if (ExpressionNode.IsUnsigned(left))
985 {
986 return ExpressionNode.IsSigned(right);
987 }
988 return false;
989 }
990 return true;
991 }
ExpressionNode(DataTable table)

References System.Data.ExpressionNode.IsSigned(), and System.Data.ExpressionNode.IsUnsigned().

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