pub fn max<T, V>(l: &V, r: &V) -> Vwhere T: Scalar, V: Vector<T>,
Returns a vector with the maximum components from both input vectors.
Performs component-wise maximum:
max(v, w) = (max(v₁, w₁), max(v₂, w₂), ...)