|
inlineconstexpr |
Parameters
x, xs...: arguments.tup: non empty tuple of arguments.c: Conditional expression masking the operation.m: Logical value masking the operation.Return value
kumi::tuple containing the value of the minimum and the maximum of the arguments.{min[o], max[o]} where o is one of these two options.Nan, the corresponding output element is system-dependent.Masked Call
The call eve::minmax[mask](x, ...) provides a masked version of minmax which is equivalent to if_else(mask, minmax(x, ...), zip(x, x))
Example