pub fn set_splat_i32_m128i_s_m256i(a: m128i) -> m256i
Available with target feature avx2 only.
Expand description

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]);