[][src]Function safe_arch::ceil_m128d

#[must_use]pub fn ceil_m128d(a: m128d) -> m128d
This is supported with target feature sse4.1 only.

Round each lane to a whole number, towards positive infinity

let a = m128d::from_array([-0.1, 1.8]);
assert_eq!(ceil_m128d(a).to_array(), [0.0, 2.0]);