Function safe_arch::floor_m128d

source ·
pub fn floor_m128d(a: m128d) -> m128d
Available with target feature sse4.1 only.
Expand description

Round each lane to a whole number, towards negative infinity

let a = m128d::from_array([-0.1, 1.8]);
assert_eq!(floor_m128d(a).to_array(), [-1.0, 1.0]);