[−][src]Function safe_arch::set_i32_m128i
#[must_use]pub fn set_i32_m128i(a: i32, b: i32, c: i32, d: i32) -> m128i
This is supported with target feature
sse2
only.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));