diff --git a/pixmappaint.d b/pixmappaint.d index 1fa7b77..9590267 100644 --- a/pixmappaint.d +++ b/pixmappaint.d @@ -447,11 +447,21 @@ struct UDecimal { return UDecimal.make(_value + (ulong(rhs) << 32)); } + /// ditto + UDecimal opBinary(string op : "+")(const UDecimal rhs) const { + return UDecimal.make(_value + rhs._value); + } + /// ditto UDecimal opBinary(string op : "-")(const uint rhs) const { return UDecimal.make(_value - (ulong(rhs) << 32)); } + /// ditto + UDecimal opBinary(string op : "-")(const UDecimal rhs) const { + return UDecimal.make(_value - rhs._value); + } + /// ditto UDecimal opBinary(string op : "*")(const uint rhs) const { return UDecimal.make(_value * rhs); @@ -461,6 +471,16 @@ struct UDecimal { UDecimal opBinary(string op : "/")(const uint rhs) const { return UDecimal.make(_value / rhs); } + + /// ditto + UDecimal opBinary(string op : "<<")(const uint rhs) const { + return UDecimal.make(_value << rhs); + } + + /// ditto + UDecimal opBinary(string op : ">>")(const uint rhs) const { + return UDecimal.make(_value >> rhs); + } } public { @@ -492,12 +512,24 @@ struct UDecimal { return this; } + /// ditto + auto opOpAssign(string op : "+")(const UDecimal rhs) { + _value += rhs._value; + return this; + } + /// ditto auto opOpAssign(string op : "-")(const uint rhs) { _value -= (ulong(rhs) << 32); return this; } + /// ditto + auto opOpAssign(string op : "-")(const UDecimal rhs) { + _value -= rhs._value; + return this; + } + /// ditto auto opOpAssign(string op : "*")(const uint rhs) { _value *= rhs; @@ -509,6 +541,18 @@ struct UDecimal { _value /= rhs; return this; } + + /// ditto + auto opOpAssign(string op : "<<")(const uint rhs) const { + _value <<= rhs; + return this; + } + + /// ditto + auto opOpAssign(string op : ">>")(const uint rhs) const { + _value >>= rhs; + return this; + } } }