public static ulong andnot(ulong left, ulong right) { if (Bmi1.IsBmi1Supported) { return(Bmi1.andn_u64(right, left)); } else { return(left & ~right); } }