pub fn min<T>(xs: &[T]) -> Option<T>where T: PartialOrd + Copy,
Locates the minimum value in a given vector.
Unrolls loops to facilitate vectorization.