mirror of https://github.com/adamdruppe/arsd.git
Implement `opBinaryRight(string op : "/")` of `UDecimal`
This commit is contained in:
parent
78ed1bb287
commit
266ae6f7dc
|
@ -475,8 +475,8 @@ struct UDecimal {
|
|||
}
|
||||
|
||||
/// ditto
|
||||
UDecimal opBinaryRight(string op : "/")(const uint) const {
|
||||
static assert(false, "Use `int() / cast(int)(UDecimal())` instead.");
|
||||
UDecimal opBinaryRight(string op : "/")(const uint lhs) const {
|
||||
return UDecimal.make(lhs / _value);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue