[][src]Macro safe_arch::cmp_op_mask_m128d

macro_rules! cmp_op_mask_m128d {
    ($a:expr, $op:tt, $b:expr) => { ... };
    (@_raw_call $a:expr, $b:expr, $imm:expr) => { ... };
}
This is supported with target feature avx only.

Compare f64 lanes according to the operation specified, mask output.

let a = m128d::from_array([1.0, 0.0]);
let b = m128d::from_array([1.0, 1.0]);
let c = cmp_op_mask_m128d!(a, EqualOrdered, b).to_bits();
assert_eq!(c, [u64::MAX, 0]);