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));
|
return UDecimal.make(_value + (ulong(rhs) << 32));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// ditto
|
||||||
|
UDecimal opBinary(string op : "+")(const UDecimal rhs) const {
|
||||||
|
return UDecimal.make(_value + rhs._value);
|
||||||
|
}
|
||||||
|
|
||||||
/// ditto
|
/// ditto
|
||||||
UDecimal opBinary(string op : "-")(const uint rhs) const {
|
UDecimal opBinary(string op : "-")(const uint rhs) const {
|
||||||
return UDecimal.make(_value - (ulong(rhs) << 32));
|
return UDecimal.make(_value - (ulong(rhs) << 32));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// ditto
|
||||||
|
UDecimal opBinary(string op : "-")(const UDecimal rhs) const {
|
||||||
|
return UDecimal.make(_value - rhs._value);
|
||||||
|
}
|
||||||
|
|
||||||
/// ditto
|
/// ditto
|
||||||
UDecimal opBinary(string op : "*")(const uint rhs) const {
|
UDecimal opBinary(string op : "*")(const uint rhs) const {
|
||||||
return UDecimal.make(_value * rhs);
|
return UDecimal.make(_value * rhs);
|
||||||
|
@ -461,6 +471,16 @@ struct UDecimal {
|
||||||
UDecimal opBinary(string op : "/")(const uint rhs) const {
|
UDecimal opBinary(string op : "/")(const uint rhs) const {
|
||||||
return UDecimal.make(_value / rhs);
|
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 {
|
public {
|
||||||
|
@ -492,12 +512,24 @@ struct UDecimal {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// ditto
|
||||||
|
auto opOpAssign(string op : "+")(const UDecimal rhs) {
|
||||||
|
_value += rhs._value;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
/// ditto
|
/// ditto
|
||||||
auto opOpAssign(string op : "-")(const uint rhs) {
|
auto opOpAssign(string op : "-")(const uint rhs) {
|
||||||
_value -= (ulong(rhs) << 32);
|
_value -= (ulong(rhs) << 32);
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// ditto
|
||||||
|
auto opOpAssign(string op : "-")(const UDecimal rhs) {
|
||||||
|
_value -= rhs._value;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
/// ditto
|
/// ditto
|
||||||
auto opOpAssign(string op : "*")(const uint rhs) {
|
auto opOpAssign(string op : "*")(const uint rhs) {
|
||||||
_value *= rhs;
|
_value *= rhs;
|
||||||
|
@ -509,6 +541,18 @@ struct UDecimal {
|
||||||
_value /= rhs;
|
_value /= rhs;
|
||||||
return this;
|
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