mirror of https://github.com/adamdruppe/arsd.git
Add additional operator overloads to `UDecimal`
This commit is contained in:
parent
6eb6e88594
commit
cce1a924ae
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue