[][src]Function safe_arch::cast_to_m128i_from_m128d

#[must_use]pub fn cast_to_m128i_from_m128d(a: m128d) -> m128i
This is supported with target feature sse2 only.

Bit-preserving cast to m128i from m128d

let a = m128d::from_array([1.0, 2.0]);
let c: [u32; 4] = cast_to_m128i_from_m128d(a).into();
assert_eq!(c, [0, 0x3FF00000, 0, 0x40000000]);