mirror of https://github.com/adamdruppe/arsd.git
Improve `UDecimal`
This commit is contained in:
parent
9899b48f16
commit
6dc177619d
|
@ -407,6 +407,16 @@ struct UDecimal {
|
|||
return (_value >> 32).castTo!uint;
|
||||
}
|
||||
|
||||
///
|
||||
T opCast(T : double)() const {
|
||||
return (_value / double(0xFFFF_FFFF));
|
||||
}
|
||||
|
||||
///
|
||||
T opCast(T : float)() const {
|
||||
return (_value / float(0xFFFF_FFFF));
|
||||
}
|
||||
|
||||
///
|
||||
public UDecimal round() const {
|
||||
const truncated = (_value & 0xFFFF_FFFF_0000_0000);
|
||||
|
@ -534,49 +544,49 @@ struct UDecimal {
|
|||
|
||||
public {
|
||||
///
|
||||
auto opOpAssign(string op : "+")(const uint rhs) {
|
||||
UDecimal opOpAssign(string op : "+")(const uint rhs) {
|
||||
_value += (ulong(rhs) << 32);
|
||||
return this;
|
||||
}
|
||||
|
||||
/// ditto
|
||||
auto opOpAssign(string op : "+")(const UDecimal rhs) {
|
||||
UDecimal opOpAssign(string op : "+")(const UDecimal rhs) {
|
||||
_value += rhs._value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/// ditto
|
||||
auto opOpAssign(string op : "-")(const uint rhs) {
|
||||
UDecimal opOpAssign(string op : "-")(const uint rhs) {
|
||||
_value -= (ulong(rhs) << 32);
|
||||
return this;
|
||||
}
|
||||
|
||||
/// ditto
|
||||
auto opOpAssign(string op : "-")(const UDecimal rhs) {
|
||||
UDecimal opOpAssign(string op : "-")(const UDecimal rhs) {
|
||||
_value -= rhs._value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/// ditto
|
||||
auto opOpAssign(string op : "*")(const uint rhs) {
|
||||
UDecimal opOpAssign(string op : "*")(const uint rhs) {
|
||||
_value *= rhs;
|
||||
return this;
|
||||
}
|
||||
|
||||
/// ditto
|
||||
auto opOpAssign(string op : "/")(const uint rhs) {
|
||||
UDecimal opOpAssign(string op : "/")(const uint rhs) {
|
||||
_value /= rhs;
|
||||
return this;
|
||||
}
|
||||
|
||||
/// ditto
|
||||
auto opOpAssign(string op : "<<")(const uint rhs) const {
|
||||
UDecimal opOpAssign(string op : "<<")(const uint rhs) const {
|
||||
_value <<= rhs;
|
||||
return this;
|
||||
}
|
||||
|
||||
/// ditto
|
||||
auto opOpAssign(string op : ">>")(const uint rhs) const {
|
||||
UDecimal opOpAssign(string op : ">>")(const uint rhs) const {
|
||||
_value >>= rhs;
|
||||
return this;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue