pub fn cast_to_m128_from_m128i(a: m128i) -> m128
Available with target feature sse2 only.
Expand description

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]);