[][src]Function safe_arch::cast_to_m128_from_m128i

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

Bit-preserving cast to m128 from m128i

let a = m128i::from([1, 2, 3, 4]);
let c: [u32; 4] = cast_to_m128_from_m128i(a).to_bits();
assert_eq!(c, [1, 2, 3, 4]);