Example #1
0
 public static uint andnot(uint left, uint right)
 {
     if (Bmi1.IsBmi1Supported)
     {
         return(Bmi1.andn_u32(right, left));
     }
     else
     {
         return(left & ~right);
     }
 }