[][src]Macro safe_arch::shl_imm_u32_m256i

macro_rules! shl_imm_u32_m256i {
    ($a:expr, $imm:expr) => { ... };
}
This is supported with target feature avx2 only.

Shifts all u32 lanes left by an immediate.

let a = m256i::from([1_u32, 2, 3, 4, 1, 2, 3, 4]);
let c: [u32; 8] = shl_imm_u32_m256i!(a, 1).into();
assert_eq!(
  c,
  [1_u32 << 1, 2 << 1, 3 << 1, 4 << 1, 1 << 1, 2 << 1, 3 << 1, 4 << 1]
);