示例#1
0
 public static void Shift(ref Int128 c, int d)
 {
     UInt128.ArithmeticShift(ref c.v, d);
 }
示例#2
0
 public static void Shift(out Int128 c, ref Int128 a, int d)
 {
     UInt128.ArithmeticShift(out c.v, ref a.v, d);
 }