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

Splat the 128-bits across 256-bits.

let a = m128i::from(1_i128);
let b: [i128; 2] = splat_m128i_m256i(a).into();
assert_eq!(b, [1_i128, 1]);