[−][src]Macro safe_arch::insert_i32_imm_m128i
Inserts a new value for the i32
lane specified.
let a = m128i::from([5, 6, 7, 8]); let b: [i32; 4] = insert_i32_imm_m128i!(a, 23, 1).into(); assert_eq!(b, [5, 23, 7, 8]);
Inserts a new value for the i32
lane specified.
let a = m128i::from([5, 6, 7, 8]); let b: [i32; 4] = insert_i32_imm_m128i!(a, 23, 1).into(); assert_eq!(b, [5, 23, 7, 8]);