Implement `opBinaryRight(string op : "/")` of `UDecimal`

This commit is contained in:
Elias Batek 2025-01-12 02:32:25 +01:00
parent 78ed1bb287
commit 266ae6f7dc
1 changed files with 2 additions and 2 deletions

View File

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