devela::_dep::safe_arch

Function store_i64_m128i_s

pub fn store_i64_m128i_s(r: &mut i64, a: m128i)
Available on crate feature dep_safe_arch only.
Expand description

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