min

Function min 

Source
pub fn min<T, V>(l: &V, r: &V) -> V
where T: Scalar, V: Vector<T>,
Expand description

Returns a vector with the minimum components from both input vectors.

Performs component-wise minimum:

min(v, w) = (min(v₁, w₁), min(v₂, w₂), ...)