Function insert_i64_imm_m128i
pub fn insert_i64_imm_m128i<const IMM: i32>(a: m128i, new: i64) -> m128i
Available on crate feature
dep_safe_arch
only.Expand description
Inserts a new value for the i64
lane specified.
let a = m128i::from([5_i64, 6]);
let b: [i64; 2] = insert_i64_imm_m128i::<1>(a, 23).into();
assert_eq!(b, [5_i64, 23]);