|
inlineconstexpr |
Computes the negated absolute value of the minimal element.
This is equivalent to -eve::abs ( eve::min(...) ). but can be subject to optimizations.
Defined in Header
Parameters
x
, ...xs
: arguments.Return value
The negated absolute value of the minimal element is returned.
Masked Call
The call eve::negabsmin[mask](x, ...)
provides a masked version of eve::negabsmin
which is equivalent to eve::if_else (mask, negabsmin(x, ...), x)
Example
The call d(eve::negabsmin)(...)
, where d is one of these two decorators, is equivalent to -eve::abs (d( eve::min )(...))
.