[][src]Function safe_arch::floor_m256d

#[must_use]pub fn floor_m256d(a: m256d) -> m256d
This is supported with target feature avx only.

Round f64 lanes towards negative infinity.

let a = m256d::from([1.1, 2.5, 3.8, 5.0]);
let b = floor_m256d(a).to_array();
assert_eq!(b, [1.0, 2.0, 3.0, 5.0]);