|
inlineconstexpr |
Computes the maximal value of an simd vector.
Defined in Header
Parameter
x : argument.Return value
The scalar minimal value.
Masked Call
The call eve::minimum[mask](x) provides a masked version of minimum which is equivalent to : `minimum(if_else(mask, x, valmax(as(x)))).
Example