コード例 #1
0
ファイル: AndNot.cs プロジェクト: csritter/MaxMath
 public static ulong andnot(ulong left, ulong right)
 {
     if (Bmi1.IsBmi1Supported)
     {
         return(Bmi1.andn_u64(right, left));
     }
     else
     {
         return(left & ~right);
     }
 }