[][src]Function safe_arch::bitandnot_m256d

#[must_use]pub fn bitandnot_m256d(a: m256d, b: m256d) -> m256d
This is supported with target feature avx only.

Bitwise (!a) & b.

let a = m256d::from_array([1.0, 0.0, 1.0, 0.0]);
let b = m256d::from_array([1.0, 1.0, 0.0, 0.0]);
let c = bitandnot_m256d(a, b).to_array();
assert_eq!(c, [0.0, 1.0, 0.0, 0.0]);