max

Function max 

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

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

Performs component-wise maximum:

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