fminAbs

Returns the smaller _decimal value between absolutes of x and y

@IEEECompliant("minNumMag", 19)
fminAbs
(
D1
D2
)
(
auto const ref D1 x
,
auto const ref D2 y
)
if ()

Throws

InvalidOperationException if x or y is signaling NaN

Special values

xyfminAbs(x, y)
NaNanyy
anyNaNx

Examples

decimal32 x = 3;
decimal64 y = -4;
assert (fminAbs(x, y) == 3);

Meta