Function safe_arch::set_i32_m128i
source · pub fn set_i32_m128i(a: i32, b: i32, c: i32, d: i32) -> m128i
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));