pub fn byte_shl_imm_u128_m256i<const IMM: i32>(a: m256i) -> m256i
Available with target feature avx2 only.
Expand description

Shifts each u128 lane left by a number of bytes.

let a = m256i::from([0x0000000B_0000000A_0000000F_11111111_u128; 2]);
//
let b: [u128; 2] = byte_shl_imm_u128_m256i::<1>(a).into();
assert_eq!(b, [0x00000B00_00000A00_00000F11_11111100_u128; 2]);