Function floor_m128d_s
pub fn floor_m128d_s(a: m128d, b: m128d) -> m128d
Available on crate feature
dep_safe_arch
only.Expand description
Round the low lane of b
toward negative infinity, high lane is a
.
let a = m128d::from_array([-0.1, 1.8]);
let b = m128d::from_array([2.5, 3.0]);
assert_eq!(floor_m128d_s(a, b).to_array(), [2.0, 1.8]);