Function set_i32_m128i
pub fn set_i32_m128i(a: i32, b: i32, c: i32, d: i32) -> m128i
Available on crate feature
dep_safe_arch
only.Expand description
Sets the args into an m128i
, first arg is the high lane.
let a = m128i::from([3, 2, 1, 0]);
let b = set_i32_m128i(0, 1, 2, 3);
assert_eq!(<[i32; 4]>::from(a), <[i32; 4]>::from(b));