pub fn componentwise_min<T: PartialOrd + Copy, C: Components<T, N>, const N: usize>(
a: C,
b: C,
) -> CExpand description
Componentwise minimum of two values.
Each component of the result is the minimum of the corresponding
components of a and b.