pub fn store_i64_m128i_s(r: &mut i64, a: m128i)
Stores the value to the reference given.
let a = m128i::from([1_i64, 2]); let mut b = 0_i64; store_i64_m128i_s(&mut b, a); assert_eq!(b, 1_i64);