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

Shuffle the f64 lanes from $a using an immediate control value.

let a = m256d::from_array([5.0, 6.0, 7.0, 8.0]);
let b: [f64; 4] = shuffle_ai_f64_all_m256d::<0b00_01_10_11>(a).to_array();
assert_eq!(b, [8.0, 7.0, 6.0, 5.0]);