Function safe_arch::store_m128i
source · pub fn store_m128i(r: &mut m128i, a: m128i)
Expand description
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]);