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