pub fn set_reversed_i32_m128i(a: i32, b: i32, c: i32, d: i32) -> m128i
Available with target feature sse2 only.
Expand description

Sets the args into an m128i, first arg is the low lane.

let a = m128i::from([0, 1, 2, 3]);
let b = set_reversed_i32_m128i(0, 1, 2, 3);
assert_eq!(<[i32; 4]>::from(a), <[i32; 4]>::from(b));