[][src]Function safe_arch::set_splat_i32_m128i_s_m256i

#[must_use]pub fn set_splat_i32_m128i_s_m256i(a: m128i) -> m256i
This is supported with target feature avx2 only.

Sets the lowest i32 lane of an m128i as all lanes of an m256i.

let a = m128i::from(5_i32 as i128);
let b: [i32; 8] = set_splat_i32_m128i_s_m256i(a).into();
assert_eq!(b, [5_i32; 8]);