Beispiel #1
0
 public static ulong bits_extractlowest(ulong x)
 {
     if (Bmi1.IsBmi1Supported)
     {
         return(Bmi1.blsi_u64(x));
     }
     else
     {
         return(x & (ulong)-(long)x);
     }
 }