1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-23 18:18:00 +02:00

Added IOpMultiplicable and IOpDividable, fixed Double not implementing IOpAddable and IOpSubtractable

This commit is contained in:
MineGame159 2020-06-05 15:46:31 +02:00
parent 5d9a5f183d
commit 862c15241a
13 changed files with 151 additions and 11 deletions

View file

@ -1,6 +1,6 @@
namespace System
{
struct UInt32 : uint32, IInteger, IUnsigned, IHashable, IOpComparable, IFormattable, IIsNaN, IOpAddable, IOpSubtractable
struct UInt32 : uint32, IInteger, IUnsigned, IHashable, IOpComparable, IFormattable, IIsNaN, IOpAddable, IOpSubtractable, IOpMultiplicable, IOpDividable
{
public enum ParseError
{
@ -27,6 +27,16 @@ namespace System
return (SelfBase)lhs - (SelfBase)rhs;
}
public static Self operator*(Self lhs, Self rhs)
{
return (SelfBase)lhs * (SelfBase)rhs;
}
public static Self operator/(Self lhs, Self rhs)
{
return (SelfBase)lhs / (SelfBase)rhs;
}
public int GetHashCode()
{
return (int)this;