mirror of
https://github.com/dlang-community/dfmt.git
synced 2025-04-25 21:00:03 +03:00
14 lines
214 B
D
14 lines
214 B
D
unittest
|
|
{
|
|
if (a.value == 0)
|
|
{
|
|
if (a.negative)
|
|
return SignExtendedNumber(value == 0 && negative);
|
|
else
|
|
return extreme(negative);
|
|
}
|
|
|
|
|
|
|
|
uinteger_t aAbs = copySign(a.value, a.negative);
|
|
}
|