[][src]Function safe_arch::store_m128i

pub fn store_m128i(r: &mut m128i, a: m128i)
This is supported with target feature sse2 only.

Stores the value to the reference given.

let a = m128i::from([1, 2, 3, 4]);
let mut b = zeroed_m128i();
store_m128i(&mut b, a);
let c: [i32; 4] = b.into();
assert_eq!(c, [1, 2, 3, 4]);