mirror of
https://github.com/dlang-community/dfmt.git
synced 2025-04-25 21:00:03 +03:00
5 lines
168 B
D
5 lines
168 B
D
SignExtendedNumber opSub(const SignExtendedNumber a) const
|
|
{
|
|
if (a.isMinimum()) return negative? SignExtendedNumber(value, false) : max();
|
|
else return this+( -a);
|
|
}
|