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