Add additional operator overloads to `UDecimal`

This commit is contained in:
Elias Batek 2025-01-13 03:15:47 +01:00
parent 6eb6e88594
commit cce1a924ae
1 changed files with 44 additions and 0 deletions

View File

@ -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;
}
}
}