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